Fixed formatting
This commit is contained in:
@@ -748,14 +748,14 @@ bool parse_source_location(const std::string &location_str, std::string &file,
|
||||
try {
|
||||
line = std::stoi(tokens.at(1));
|
||||
}
|
||||
catch(std::invalid_argument &e) {
|
||||
catch (std::invalid_argument &e) {
|
||||
line = 0;
|
||||
}
|
||||
|
||||
try {
|
||||
column = std::stoi(tokens.at(2));
|
||||
}
|
||||
catch(std::invalid_argument &e) {
|
||||
catch (std::invalid_argument &e) {
|
||||
column = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user