mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-27 06:48:33 +00:00
StripSpaces: only strip spaces
StripWhitespace maintains old behavior
This commit is contained in:
parent
e4ff49769c
commit
f92541fbd9
20 changed files with 44 additions and 32 deletions
|
@ -980,7 +980,7 @@ static std::unique_ptr<Expression> ParseBarewordExpression(const std::string& st
|
|||
|
||||
ParseResult ParseExpression(const std::string& str)
|
||||
{
|
||||
if (StripSpaces(str).empty())
|
||||
if (StripWhitespace(str).empty())
|
||||
return ParseResult::MakeEmptyResult();
|
||||
|
||||
auto bareword_expr = ParseBarewordExpression(str);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue