fix style error: Variable xxx hides enumerator with same name

This commit is contained in:
e.gavrin
2014-07-16 23:20:27 +04:00
parent 73bf0f9be1
commit a61d31e9bf
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
void
init_int (void)
{
#define INIT_OP_FUNC(name) __opfuncs[ name ] = opfunc_##name ;
#define INIT_OP_FUNC(name) __opfuncs[ __op__idx_##name ] = opfunc_##name ;
JERRY_STATIC_ASSERT (sizeof (OPCODE) <= 4);
OP_LIST (INIT_OP_FUNC)