From b52a40fcc94e0722475e003b282664f2c4feef9b Mon Sep 17 00:00:00 2001 From: Filip Filmar Date: Thu, 12 Nov 2020 11:08:10 -0800 Subject: [PATCH] Add an include in minikin (flutter/engine#22466) FontLanguageListCache.cpp uses the ICU constant FALSE of type UBool, but does not #include where it is defined. This makes the code brittle with respect to header file reorganization, and I found this while trying to roll ICU version 68.1 to Flutter engine. --- .../third_party/txt/src/minikin/FontLanguageListCache.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/src/flutter/third_party/txt/src/minikin/FontLanguageListCache.cpp b/engine/src/flutter/third_party/txt/src/minikin/FontLanguageListCache.cpp index 093ee269db5..e08e88d00af 100644 --- a/engine/src/flutter/third_party/txt/src/minikin/FontLanguageListCache.cpp +++ b/engine/src/flutter/third_party/txt/src/minikin/FontLanguageListCache.cpp @@ -19,6 +19,7 @@ #include "FontLanguageListCache.h" #include +#include #include #include