]> git.saurik.com Git - wxWidgets.git/commitdiff
No changes, just suppress an unused variable warning.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 30 Jun 2012 23:41:33 +0000 (23:41 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 30 Jun 2012 23:41:33 +0000 (23:41 +0000)
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

tests/test.cpp

index 155bfdf154aca426c21def3f98ff6697b09af88d..a2a04ed98c5db9e83e70a6613d1c7c0652c97204 100644 (file)
@@ -165,7 +165,7 @@ static string GetExceptionMessage()
         throw;
     }
 #if wxDEBUG_LEVEL
-    catch ( TestAssertFailure& )
+    catch ( TestAssertFailure& )
     {
         msg = s_lastAssertMessage;
         s_lastAssertMessage.clear();