diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-01 19:58:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 16:14:36 +0000 |
commit | fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b (patch) | |
tree | 448f0d04f780007b3eeeb76b7c4c8c54cbfd6d9b /testtools/source | |
parent | c48b928acab9f226ad5ad816fe773c21051431e8 (diff) |
boost::unordered_map->std::unordered_map
you can get debug stl this way
Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
Diffstat (limited to 'testtools/source')
-rw-r--r-- | testtools/source/performance/ubtest.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
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 <stdio.h> #include <math.h> #include <string> -#include <boost/unordered_map.hpp> #include <map> +#include <unordered_map> #include <osl/diagnose.h> #include <osl/mutex.hxx> @@ -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 ) |