Fix apostrophes in strings

This commit is contained in:
Irastris
2026-04-30 15:44:41 -04:00
parent 7a438ad30f
commit b5ca343fac
-3
View File
@@ -92,9 +92,6 @@ std::string escape(std::string_view str) noexcept {
case '"':
result += """;
break;
case '\'':
result += "'";
break;
default:
result += c;
break;