aboutsummaryrefslogtreecommitdiff
path: root/xsde/cxx/hybrid/aggregate-elements.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsde/cxx/hybrid/aggregate-elements.hxx')
-rw-r--r--xsde/cxx/hybrid/aggregate-elements.hxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/xsde/cxx/hybrid/aggregate-elements.hxx b/xsde/cxx/hybrid/aggregate-elements.hxx
index a7ac9c7..c73696e 100644
--- a/xsde/cxx/hybrid/aggregate-elements.hxx
+++ b/xsde/cxx/hybrid/aggregate-elements.hxx
@@ -6,7 +6,7 @@
#ifndef CXX_HYBRID_AGGREGATE_ELEMENTS_HXX
#define CXX_HYBRID_AGGREGATE_ELEMENTS_HXX
-#include <cult/containers/map.hxx>
+#include <map>
#include <cxx/hybrid/elements.hxx>
@@ -14,9 +14,7 @@ namespace CXX
{
namespace Hybrid
{
- typedef
- Cult::Containers::Map<SemanticGraph::Type*, String>
- TypeInstanceMap;
+ typedef std::map<SemanticGraph::Type*, String> TypeInstanceMap;
struct InstanceInfo
{
@@ -24,7 +22,7 @@ namespace CXX
String name;
};
- typedef Cult::Containers::Map<String, InstanceInfo> TypeIdInstanceMap;
+ typedef std::map<String, InstanceInfo> TypeIdInstanceMap;
}
}