From 0508764973841c961478ee6dcda97b1290f526e2 Mon Sep 17 00:00:00 2001 From: catalinr Date: Mon, 14 Oct 2019 08:10:41 +0300 Subject: [PATCH] Initialize isLSB to avoid warning --- include/wx/strconv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/strconv.h b/include/wx/strconv.h index f6088e10c0..8474876500 100644 --- a/include/wx/strconv.h +++ b/include/wx/strconv.h @@ -288,7 +288,7 @@ private: public: // the initial state is direct - DecoderState() { mode = Direct; accum = bit = msb = 0; } + DecoderState() { mode = Direct; accum = bit = msb = 0; isLSB = false; } // switch to/from shifted mode void ToDirect() { mode = Direct; }