From: Vadim Zeitlin Date: Sat, 30 Jun 2012 23:41:33 +0000 (+0000) Subject: No changes, just suppress an unused variable warning. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d01ec0965c3d6828167e501db8a7bc9c6e818e85?ds=inline 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 --- diff --git a/tests/test.cpp b/tests/test.cpp index 155bfdf154..a2a04ed98c 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -165,7 +165,7 @@ static string GetExceptionMessage() throw; } #if wxDEBUG_LEVEL - catch ( TestAssertFailure& e ) + catch ( TestAssertFailure& ) { msg = s_lastAssertMessage; s_lastAssertMessage.clear();