summaryrefslogtreecommitdiff
path: root/sc/source/core/inc/bcaslot.hxx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 00:56:21 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 00:59:10 +0100
commiteb1d9d3cda2da6b00749ff61ea63931f00a5b2b7 (patch)
tree4d31232cf0d58f153ca474ba8802344f954c9836 /sc/source/core/inc/bcaslot.hxx
parent82d08610465649dd1a49f8b7f6d4e7cf80f15c16 (diff)
port repository calc to boost unordered containers
Diffstat (limited to 'sc/source/core/inc/bcaslot.hxx')
-rw-r--r--sc/source/core/inc/bcaslot.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/inc/bcaslot.hxx b/sc/source/core/inc/bcaslot.hxx
index 41d21243f237..6d857c10f2e9 100644
--- a/sc/source/core/inc/bcaslot.hxx
+++ b/sc/source/core/inc/bcaslot.hxx
@@ -30,7 +30,7 @@
#define SC_BCASLOT_HXX
#include <set>
-#include <hash_set>
+#include <boost/unordered_set.hpp>
#include <functional>
#include <svl/broadcast.hxx>
#include <svl/svarray.hxx>
@@ -97,7 +97,7 @@ struct ScBroadcastAreaEqual
}
};
-typedef ::std::hash_set< ScBroadcastArea*, ScBroadcastAreaHash, ScBroadcastAreaEqual > ScBroadcastAreas;
+typedef ::boost::unordered_set< ScBroadcastArea*, ScBroadcastAreaHash, ScBroadcastAreaEqual > ScBroadcastAreas;
//=============================================================================
@@ -117,7 +117,7 @@ struct ScBroadcastAreaBulkEqual
}
};
-typedef ::std::hash_set< const ScBroadcastArea*, ScBroadcastAreaBulkHash,
+typedef ::boost::unordered_set< const ScBroadcastArea*, ScBroadcastAreaBulkHash,
ScBroadcastAreaBulkEqual > ScBroadcastAreasBulk;
//=============================================================================