Replace all locale-dependent operations with locale-agnostic counterparts

This commit is contained in:
wechman
2022-03-07 17:23:08 +01:00
parent 198b705361
commit 52dfccca98
16 changed files with 106 additions and 52 deletions
@@ -203,7 +203,7 @@ private:
else
solAssert(false);
if (isdigit(value.front()))
if (isDigit(value.front()))
return yul::Literal{_identifier.debugData, yul::LiteralKind::Number, yul::YulString{value}, {}};
else
return yul::Identifier{_identifier.debugData, yul::YulString{value}};