Fixed formatting

This commit is contained in:
Bartek Kryza
2023-05-28 22:20:40 +02:00
parent 8e801fe31d
commit f273f6b2f7
2 changed files with 13 additions and 11 deletions

View File

@@ -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;
}