mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix symbol shadowing warnings in VDF parser
This commit is contained in:
parent
40f065bc1d
commit
c729b6faa8
@ -444,8 +444,8 @@ namespace vdf
|
||||
|
||||
curIter = skip_whitespaces(curIter, last);
|
||||
|
||||
auto conditional = conditional_fullfilled(curIter, last);
|
||||
if (!conditional)
|
||||
auto conditional_key = conditional_fullfilled(curIter, last);
|
||||
if (!conditional_key)
|
||||
continue;
|
||||
|
||||
while (*curIter == TYTI_L(charT, '/'))
|
||||
@ -469,8 +469,8 @@ namespace vdf
|
||||
strip_escape_symbols(value);
|
||||
curIter = valueEnd + ((*valueEnd == TYTI_L(charT, '\"')) ? 1 : 0);
|
||||
|
||||
auto conditional = conditional_fullfilled(curIter, last);
|
||||
if (!conditional)
|
||||
auto conditional_value = conditional_fullfilled(curIter, last);
|
||||
if (!conditional_value)
|
||||
continue;
|
||||
|
||||
// process value
|
||||
|
Loading…
x
Reference in New Issue
Block a user