From 4f4bb96f2b8d90210256608e4e64426ecd8b5492 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Fri, 6 Dec 2019 06:27:47 -0800 Subject: [PATCH] Suppress false warning of uninit var --- common/gal/stroke_font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/gal/stroke_font.cpp b/common/gal/stroke_font.cpp index 4cd3bd932e..68e0b63968 100644 --- a/common/gal/stroke_font.cpp +++ b/common/gal/stroke_font.cpp @@ -70,7 +70,7 @@ bool STROKE_FONT::LoadNewStrokeFont( const char* const aNewStrokeFont[], int aNe GLYPH glyph; double glyphStartX = 0.0; double glyphEndX = 0.0; - double glyphWidth; + double glyphWidth = 0.0; std::vector* pointList = nullptr;