Skip to content

Commit

Permalink
Fixed compiler warning: unknown escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
renecannao committed Jul 3, 2019
1 parent d873319 commit 6e69ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/set_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ std::map<std::string,std::vector<string>> SetParser::parse() {
}
} else if (value4 != "") {
// VARIABLE
value5.erase(value5.find_last_not_of(" \n\r\t\,")+1);
value5.erase(value5.find_last_not_of(" \n\r\t,")+1);
key = value4;
op.push_back(value5);
}
Expand Down

0 comments on commit 6e69ca0

Please sign in to comment.