From 7e39c43896e13bbd5d5f115b8fcda0bdbaccd162 Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Tue, 12 Feb 2013 15:24:35 +0100 Subject: [PATCH] allocate data in chunks of 8MB --- DataStructures/DeallocatingVector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DataStructures/DeallocatingVector.h b/DataStructures/DeallocatingVector.h index d3c19d170..c3f922c85 100644 --- a/DataStructures/DeallocatingVector.h +++ b/DataStructures/DeallocatingVector.h @@ -32,7 +32,7 @@ or see http://www.gnu.org/licenses/agpl.txt. #endif -template +template class DeallocatingVectorIterator : public std::iterator { protected: @@ -185,7 +185,7 @@ public: } }; -template +template class DeallocatingVector { private: size_t mCurrentSize;