mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
Get rid of unused variable warning
This commit is contained in:
parent
0afd9026dc
commit
3ca37089ca
|
@ -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",
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue