Skip to content
Snippets Groups Projects
Unverified Commit dc3a8dde authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

worker: add missing const

parent 6d48d0a5
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ int main(int argc, char* argv[])
thrAlgorithmListWorker = std::thread([&]() { algorithmListWorker->listen(); });
evaluateGraphWorker->listen();
thrAlgorithmListWorker.join();
} catch (std::exception& e) {
} catch (const std::exception& e) {
spdlog::error("{}", e.what());
returnCode = EXIT_FAILURE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment