Remove unused var name on catch()

This commit is contained in:
David Capello 2017-06-14 19:51:12 -03:00
parent f37ccdc578
commit 10bcc83a37

View File

@ -17,7 +17,7 @@ void RenderTaskJob::onJob()
try {
m_func();
}
catch (std::exception& ex) {
catch (const std::exception&) {
// TODO show the exception
}
}