Initialize isLSB to avoid warning

This commit is contained in:
catalinr 2019-10-14 08:10:41 +03:00
parent 2fc569f0c2
commit 0508764973

View File

@ -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; }