Add an include in minikin (#22466)

FontLanguageListCache.cpp uses the ICU constant FALSE of type UBool, but
does not #include <umachine.h> 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.
This commit is contained in:
Filip Filmar 2020-11-12 11:08:10 -08:00 committed by GitHub
parent 36b960e224
commit d50a83c15b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,7 @@
#include "FontLanguageListCache.h"
#include <unicode/uloc.h>
#include <unicode/umachine.h>
#include <unordered_set>
#include <log/log.h>