[font_collection] Add missing semicolon (#8546)

This commit is contained in:
Zachary Anderson 2019-04-11 09:45:24 -07:00 committed by GitHub
parent ae4df6fd18
commit c00364a6c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,7 +212,7 @@ std::shared_ptr<minikin::FontFamily> FontCollection::CreateMinikinFontFamily(
// Add fonts to the Minikin font family.
for (int i = 0; i < font_style_set->count(); ++i) {
TRACE_EVENT0("flutter", "CreateMinikinFont")
TRACE_EVENT0("flutter", "CreateMinikinFont");
// Create the skia typeface.
sk_sp<SkTypeface> skia_typeface(
sk_sp<SkTypeface>(font_style_set->createTypeface(i)));