[geos-commits] r2490 - trunk/tests/bigtest

svn_geos at osgeo.org svn_geos at osgeo.org
Thu May 7 12:00:46 EDT 2009


Author: strk
Date: 2009-05-07 12:00:46 -0400 (Thu, 07 May 2009)
New Revision: 2490

Modified:
   trunk/tests/bigtest/bug234.cpp
Log:
minor debug output improvement

Modified: trunk/tests/bigtest/bug234.cpp
===================================================================
--- trunk/tests/bigtest/bug234.cpp	2009-05-07 15:57:28 UTC (rev 2489)
+++ trunk/tests/bigtest/bug234.cpp	2009-05-07 16:00:46 UTC (rev 2490)
@@ -38,10 +38,10 @@
  MultiPolygon *mpoly1 = factory.createMultiPolygon(polys1);
  MultiPolygon *mpoly2 = factory.createMultiPolygon(polys2);
 
- cout << mpoly1->toString() << endl;
- cout << mpoly2->toString() << endl;
+ cout << "      Mpoly1: " << mpoly1->toString() << endl;
+ cout << "      Mpoly2: " << mpoly2->toString() << endl;
  Geometry *intersection = mpoly1->intersection(mpoly2);
- cout << intersection->toString() << endl;
+ cout << "Intersection: " << intersection->toString() << endl;
 
  delete mpoly1;
  delete mpoly2;



More information about the geos-commits mailing list