From 9091c8702d42050b7f3c2294f176326f9ab9abd0 Mon Sep 17 00:00:00 2001 From: Project OSRM Date: Fri, 7 Oct 2011 17:44:03 +0300 Subject: [PATCH] Removing superflous statement. --- DataStructures/BaseParser.h | 1 - 1 file changed, 1 deletion(-) diff --git a/DataStructures/BaseParser.h b/DataStructures/BaseParser.h index 8856afffe..32ed8cfc7 100644 --- a/DataStructures/BaseParser.h +++ b/DataStructures/BaseParser.h @@ -28,7 +28,6 @@ public: virtual bool Init() = 0; virtual bool RegisterCallbacks(bool (*nodeCallbackPointer)(NodeT), bool (*restrictionCallbackPointer)(RestrictionT), bool (*wayCallbackPointer)(WayT), bool (*addressCallbackPointer)(NodeT, HashTable)) = 0; virtual bool Parse() = 0; -private: }; #endif /* BASEPARSER_H_ */