No changes, just suppress an unused variable warning.

Omit the name of the exception object that we never use.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71910 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-06-30 23:41:33 +00:00
parent 3253852a7e
commit d01ec0965c

View File

@@ -165,7 +165,7 @@ static string GetExceptionMessage()
throw;
}
#if wxDEBUG_LEVEL
catch ( TestAssertFailure& e )
catch ( TestAssertFailure& )
{
msg = s_lastAssertMessage;
s_lastAssertMessage.clear();