Fix shadowing warnings

This commit is contained in:
scrawl 2016-08-29 12:20:00 +02:00
parent c32f6a46dd
commit a5da3a269e
6 changed files with 25 additions and 25 deletions

View file

@ -241,9 +241,9 @@ namespace Interpreter
while (mRuntime.getPC()>=0 && mRuntime.getPC()<opcodes)
{
Type_Code code = codeBlock[mRuntime.getPC()];
Type_Code runCode = codeBlock[mRuntime.getPC()];
mRuntime.setPC (mRuntime.getPC()+1);
execute (code);
execute (runCode);
}
}
catch (...)