Suppress false warning of uninit var

This commit is contained in:
Seth Hillbrand 2019-12-06 06:27:47 -08:00
parent 4aa9552f1f
commit 4f4bb96f2b
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ bool STROKE_FONT::LoadNewStrokeFont( const char* const aNewStrokeFont[], int aNe
GLYPH glyph; GLYPH glyph;
double glyphStartX = 0.0; double glyphStartX = 0.0;
double glyphEndX = 0.0; double glyphEndX = 0.0;
double glyphWidth; double glyphWidth = 0.0;
std::vector<VECTOR2D>* pointList = nullptr; std::vector<VECTOR2D>* pointList = nullptr;