Get rid of unused variable warning

This commit is contained in:
Bart Trzynadlowski 2017-09-27 13:20:09 +00:00
parent 0afd9026dc
commit 3ca37089ca
2 changed files with 2 additions and 1 deletions

View file

@ -56,7 +56,7 @@ const CJTAG::State CJTAG::s_fsm[][2] =
{ RunTestIdle, SelectDRScan } // 15 Update-IR { RunTestIdle, SelectDRScan } // 15 Update-IR
}; };
static const char *s_state[] = const char *CJTAG::s_state[] =
{ {
"Test-Logic/Reset", "Test-Logic/Reset",
"Run-Test/Idle", "Run-Test/Idle",

View file

@ -73,6 +73,7 @@ private:
}; };
static const State s_fsm[][2]; static const State s_fsm[][2];
static const char *s_state[];
CReal3D &m_real3D; CReal3D &m_real3D;
Util::BitRegister m_instructionShiftReg; Util::BitRegister m_instructionShiftReg;