Skip to content

Commit

Permalink
added \*
Browse files Browse the repository at this point in the history
  • Loading branch information
f0xeri committed Feb 29, 2024
1 parent 720f0c1 commit d7d97c0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lexer/Lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ namespace Slangc {
stringValue[i] = '\\';
stringValue.erase(i + 1, 1);
break;
case '"':
stringValue[i] = '"';
stringValue.erase(i + 1, 1);
default:
break;
}
Expand Down

0 comments on commit d7d97c0

Please sign in to comment.