Skip to content

v0.2.47..v0.2.48 changeset SuperfluousWayRemover.cpp

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/ops/SuperfluousWayRemover.cpp b/hoot-core/src/main/cpp/hoot/core/ops/SuperfluousWayRemover.cpp
index fa023ff..e8d8460 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/SuperfluousWayRemover.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/ops/SuperfluousWayRemover.cpp
@@ -60,13 +60,15 @@ void SuperfluousWayRemover::removeWays()
 {
   _numAffected = 0;
   std::shared_ptr<ElementToRelationMap> e2r = _inputMap->getIndex().getElementToRelationMap();
+  LOG_VART(e2r->size());
 
   // make a copy of the ways to avoid issues when removing.
   const WayMap ways = _inputMap->getWays();
   for (WayMap::const_iterator it = ways.begin(); it != ways.end(); ++it)
   {
     const ConstWayPtr& w = it->second;
-    LOG_VART(w->getElementId());
+    //LOG_VART(w->getElementId());
+    LOG_VART(w);
 
     bool same = true;
     const vector<long>& nodeIds = w->getNodeIds();
Clone this wiki locally