[geos-commits] r3166 - trunk/tests/unit/operation/sharedpaths
svn_geos at osgeo.org
svn_geos at osgeo.org
Sun Dec 26 16:20:33 EST 2010
Author: strk
Date: 2010-12-26 13:20:33 -0800 (Sun, 26 Dec 2010)
New Revision: 3166
Modified:
trunk/tests/unit/operation/sharedpaths/SharedPathsOpTest.cpp
Log:
remove warning in testcase
Modified: trunk/tests/unit/operation/sharedpaths/SharedPathsOpTest.cpp
===================================================================
--- trunk/tests/unit/operation/sharedpaths/SharedPathsOpTest.cpp 2010-12-26 20:32:05 UTC (rev 3165)
+++ trunk/tests/unit/operation/sharedpaths/SharedPathsOpTest.cpp 2010-12-26 21:20:33 UTC (rev 3166)
@@ -67,7 +67,7 @@
bool threw = false;
try {
SharedPathsOp::sharedPathsOp(*g0, *g1, forwDir, backDir);
- } catch (const geos::util::IllegalArgumentException& ex) {
+ } catch (const geos::util::IllegalArgumentException& /*ex*/) {
threw = true;
}
ensure(threw);
@@ -82,7 +82,7 @@
bool threw = false;
try {
SharedPathsOp::sharedPathsOp(*g0, *g1, forwDir, backDir);
- } catch (const geos::util::IllegalArgumentException& ex) {
+ } catch (const geos::util::IllegalArgumentException& /*ex*/) {
threw = true;
}
ensure(threw);
More information about the geos-commits
mailing list