Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r72656 - branches/release/boost/geometry/algorithms/detail/overlay
From: barend.gehrels_at_[hidden]
Date: 2011-06-17 14:47:18


Author: barendgehrels
Date: 2011-06-17 14:47:16 EDT (Fri, 17 Jun 2011)
New Revision: 72656
URL: http://svn.boost.org/trac/boost/changeset/72656

Log:
Merged commit 72603 to Release Branch
Fixes problem with commented ifdef's (2x)
See Boost ML 15-06-2011 19:36 (CET)
Authorized by Daniel James
Text files modified:
   branches/release/boost/geometry/algorithms/detail/overlay/handle_tangencies.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: branches/release/boost/geometry/algorithms/detail/overlay/handle_tangencies.hpp
==============================================================================
--- branches/release/boost/geometry/algorithms/detail/overlay/handle_tangencies.hpp (original)
+++ branches/release/boost/geometry/algorithms/detail/overlay/handle_tangencies.hpp 2011-06-17 14:47:16 EDT (Fri, 17 Jun 2011)
@@ -305,9 +305,9 @@
                 debug_consider(0, left, right, header, false, "opp.", ret);
                 return ret;
             }
-//#ifdef BOOST_GEOMETRY_DEBUG_ENRICH
+#ifdef BOOST_GEOMETRY_DEBUG_ENRICH
             std::cout << " iu/iu coming from opposite unhandled" << std::endl;
-//#endif
+#endif
         }
 
         // We need EXTRA information here: are p/r/s overlapping?
@@ -360,10 +360,10 @@
             }
         }
 
-//#ifdef BOOST_GEOMETRY_DEBUG_ENRICH
+#ifdef BOOST_GEOMETRY_DEBUG_ENRICH
         std::cout << " iu/iu unhandled" << std::endl;
         debug_consider(0, left, right, header, false, "unhandled", left.index < right.index);
-//#endif
+#endif
         return left.index < right.index;
     }
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk