Small performance fixies

Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
This commit is contained in:
Viktar Lukashonak
2023-06-06 13:58:05 +03:00
parent 24407dbf4a
commit 87023c39f8
2 changed files with 1 additions and 2 deletions

View File

@ -73,7 +73,7 @@ auto WorkspaceManager::workspace_comparator() const
try {
auto is_number_less = std::stoi(lhs->get_name()) < std::stoi(rhs->get_name());
return is_number_less;
} catch (std::invalid_argument) {
} catch (const std::invalid_argument &) {
}
}