From fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 1 Jan 2015 19:58:59 +0000 Subject: boost::unordered_map->std::unordered_map you can get debug stl this way Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19 --- testtools/source/performance/ubtest.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'testtools/source') diff --git a/testtools/source/performance/ubtest.cxx b/testtools/source/performance/ubtest.cxx index 688a84102210..552eb4b49077 100644 --- a/testtools/source/performance/ubtest.cxx +++ b/testtools/source/performance/ubtest.cxx @@ -21,8 +21,8 @@ #include #include #include -#include #include +#include #include #include @@ -550,9 +550,7 @@ void TimingSheet::insert( const sal_Char * pText, sal_Int64 nLoop, sal_uInt32 nT _entries[ pText ] = TimeEntry( nLoop, nTicks ); } - -typedef boost::unordered_map< std::string, TimingSheet > t_TimingSheetMap; - +typedef std::unordered_map< std::string, TimingSheet > t_TimingSheetMap; static void benchmark( TimingSheet & rSheet, const Reference< XInterface > & xInstance, sal_Int64 nLoop ) -- cgit