remove unused variable

This commit is contained in:
wmayer
2019-09-03 17:17:28 +02:00
parent d223e326ce
commit bc4a220ad1

View File

@@ -567,7 +567,7 @@ DocumentObjectExecReturn *App::PropertyExpressionEngine::execute(ExecuteOption o
ss << e.what() << std::endl << "in property binding '" << prop->getName() << "'";
e.setMessage(ss.str());
throw;
}catch(std::bad_cast &e) {
}catch(std::bad_cast &) {
std::ostringstream ss;
ss << "Invalid type '" << value.type().name() << "'";
ss << "\nin property binding '" << prop->getName() << "'";