|
From: <ric...@us...> - 2011-10-07 07:06:07
|
Revision: 1141
http://loki-lib.svn.sourceforge.net/loki-lib/?rev=1141&view=rev
Author: rich_sposato
Date: 2011-10-07 07:06:01 +0000 (Fri, 07 Oct 2011)
Log Message:
-----------
Added 4 void declaration lines to remove compiler warning.
Modified Paths:
--------------
trunk/test/SafeFormat/main.cpp
Modified: trunk/test/SafeFormat/main.cpp
===================================================================
--- trunk/test/SafeFormat/main.cpp 2011-10-07 07:04:46 UTC (rev 1140)
+++ trunk/test/SafeFormat/main.cpp 2011-10-07 07:06:01 UTC (rev 1141)
@@ -213,6 +213,7 @@
}
catch ( const ::std::logic_error & ex )
{
+ (void)ex;
assert( true );
}
result.clear();
@@ -225,6 +226,7 @@
}
catch ( const ::std::logic_error & ex )
{
+ (void)ex;
assert( true );
}
result.clear();
@@ -237,6 +239,7 @@
}
catch ( const ::std::logic_error & ex )
{
+ (void)ex;
assert( true );
}
result.clear();
@@ -249,6 +252,7 @@
}
catch ( const ::std::logic_error & ex )
{
+ (void)ex;
assert( true );
}
result.clear();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|