From aeb701f52e57b2ba962f87e708463907547d6187 Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Wed, 19 Sep 2012 11:18:24 +0200 Subject: [PATCH] removing unused parameters --- DataStructures/BinaryHeap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DataStructures/BinaryHeap.h b/DataStructures/BinaryHeap.h index c332eadc8..f99f09b8e 100644 --- a/DataStructures/BinaryHeap.h +++ b/DataStructures/BinaryHeap.h @@ -56,7 +56,7 @@ template< typename NodeID, typename Key > class MapStorage { public: - MapStorage( size_t size = 0 ) {} + MapStorage( size_t ) {} Key &operator[]( NodeID node ) { return nodes[node]; @@ -75,7 +75,7 @@ template< typename NodeID, typename Key > class UnorderedMapStorage { public: - UnorderedMapStorage( size_t size = 0 ) { } + UnorderedMapStorage( size_t ) { } Key &operator[]( NodeID node ) { return nodes[node];