Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginClass.cpp

Issue 5137721374801920: Issue #1173 - Default behavior for catch-all blocks
Patch Set: add arguments for templates, add logging default function Created March 2, 2015, 5:02 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/plugin/PluginClass.cpp
===================================================================
--- a/src/plugin/PluginClass.cpp
+++ b/src/plugin/PluginClass.cpp
@@ -767,9 +767,9 @@
break;
}
}
- catch(...)
+ catch (...)
{
- DEBUG_GENERAL( "Caught unknown exception in CPluginClass::Invoke" );
+ EntryPointExceptionDefault("CPluginClass::Invoke");
return E_FAIL;
}
return S_OK;
« no previous file with comments | « src/plugin/Exception.h ('k') | src/plugin/PluginDebug.h » ('j') | src/plugin/PluginDebug.h » ('J')

Powered by Google App Engine
This is Rietveld