From c905bdf4be0f0a1e19af584fdbac20042c074e5d Mon Sep 17 00:00:00 2001 From: Raph Levien Date: Fri, 14 Jun 2013 14:12:07 -0700 Subject: [PATCH] Fix build breakage The MinikinFont class was missing a destructor. The build error was not caught because incremental builds didn't see fit to relink after I deleted one of the source files (that contained the impl of this destructor). Change-Id: Ic72d56fe28316cd2b2f808910e34ca6f177a1220 --- engine/src/flutter/include/minikin/MinikinFont.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/src/flutter/include/minikin/MinikinFont.h b/engine/src/flutter/include/minikin/MinikinFont.h index 2c265c3bb3..c08e4fe22d 100644 --- a/engine/src/flutter/include/minikin/MinikinFont.h +++ b/engine/src/flutter/include/minikin/MinikinFont.h @@ -38,8 +38,7 @@ public: void Ref() { mRefcount_++; } void Unref() { if (--mRefcount_ == 0) { delete this; } } - //MinikinFont(); - virtual ~MinikinFont() = 0; + virtual ~MinikinFont() { }; virtual bool GetGlyph(uint32_t codepoint, uint32_t *glyph) const = 0;