We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c6c51c commit dab95acCopy full SHA for dab95ac
1 file changed
bin2cpp20/bin2cpp.cpp
@@ -249,6 +249,9 @@ bool is_Valid(const std::string &name) {
249
std::string convertString(const std::string &s) {
250
std::string temp;
251
for(std::size_t i = 0; i < s.length(); ++i) {
252
+ if(s[i] == '\r') {
253
+ continue; // eat token
254
+ } else
255
if(s[i] == '\"' || s[i] == '\\') {
256
temp += "\\";
257
temp += s[i];
0 commit comments