From e937ab2d68d745aaa8720e1046a70170e8bdb44a Mon Sep 17 00:00:00 2001 From: Bill Meltsner Date: Thu, 26 Aug 2010 10:36:07 -0500 Subject: [PATCH] fixed gcc warnings with regard to initialization order in GlyphData --- src/modules/font/GlyphData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/font/GlyphData.cpp b/src/modules/font/GlyphData.cpp index 3472bb629..af94fdc44 100644 --- a/src/modules/font/GlyphData.cpp +++ b/src/modules/font/GlyphData.cpp @@ -28,7 +28,7 @@ namespace font { GlyphData::GlyphData(unsigned short glyph, GlyphMetrics glyphMetrics, GlyphData::Format f) - : glyph(glyph), metrics(glyphMetrics), format(f), padded(false), data(0) + : glyph(glyph), metrics(glyphMetrics), data(0), format(f), padded(false) { if (metrics.width && metrics.height) { switch (f) {