From 0504923689cc323b66b7079fbc9007e835feee94 Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Wed, 25 Apr 2012 11:07:28 +0200 Subject: [PATCH] Removing debug output --- DataStructures/SearchEngine.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/DataStructures/SearchEngine.h b/DataStructures/SearchEngine.h index 5ad6563ef..83dbd5385 100644 --- a/DataStructures/SearchEngine.h +++ b/DataStructures/SearchEngine.h @@ -362,7 +362,7 @@ public: nodeHelpDesk->FindPhantomNodeForCoordinate(location, result); } - inline NodeID GetNameIDForOriginDestinationNodeID(NodeID s, NodeID t) const { + inline NodeID GetNameIDForOriginDestinationNodeID(const NodeID s, const NodeID t) const { if(s == t) return 0; @@ -378,7 +378,6 @@ public: } inline std::string GetEscapedNameForNameID(const unsigned nameID) const { - INFO("Getting name for ID: " << nameID); return ((nameID >= _names.size() || nameID == 0) ? std::string("") : HTMLEntitize(_names.at(nameID))); }