Catch C++ exceptions by const reference

Fixes #2277
This commit is contained in:
Charles Milette 2018-05-19 19:18:26 -04:00
parent b9fd381eee
commit 72c0002b45
No known key found for this signature in database
GPG key ID: 1A5AE81377AD973A
22 changed files with 36 additions and 38 deletions

View file

@ -95,7 +95,7 @@ void Flame::FileResolvingTask::netJobFinished()
}
out.resolved = true;
}
catch(JSONValidationError & e)
catch (const JSONValidationError &e)
{
auto & out = m_toProcess.files[index];
qCritical() << "Resolving of" << out.projectId << out.fileId << "failed because of a parsing error:";