mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 17:09:40 +00:00
turned redeclartion of local variables from an error into a warning
This commit is contained in:
parent
63407a662c
commit
fe038cef03
1 changed files with 4 additions and 2 deletions
|
@ -98,10 +98,12 @@ namespace Compiler
|
|||
|
||||
if (type!=' ')
|
||||
{
|
||||
getErrorHandler().error ("catoLowern't re-declare local variable", loc);
|
||||
/// \todo add option to make re-declared local variables an error
|
||||
getErrorHandler().warning ("can't re-declare local variable", loc);
|
||||
SkipParser skip (getErrorHandler(), getContext());
|
||||
scanner.scan (skip);
|
||||
return false;
|
||||
mState = EndState;
|
||||
return true;
|
||||
}
|
||||
|
||||
mLocals.declare (mState==ShortState ? 's' : (mState==LongState ? 'l' : 'f'),
|
||||
|
|
Loading…
Reference in a new issue