aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/parser.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/parser.hxx')
-rw-r--r--xsd-frontend/parser.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/xsd-frontend/parser.hxx b/xsd-frontend/parser.hxx
index 3e1ff8a..3e76285 100644
--- a/xsd-frontend/parser.hxx
+++ b/xsd-frontend/parser.hxx
@@ -6,8 +6,9 @@
#ifndef XSD_FRONTEND_PARSER_HXX
#define XSD_FRONTEND_PARSER_HXX
+#include <set>
+
#include <cult/types.hxx>
-#include <cult/containers/set.hxx>
#include <xsd-frontend/semantic-graph/schema.hxx>
@@ -30,7 +31,7 @@ namespace XSDFrontend
// Set of disabled warning IDs. Special ID "all" disables all
// warnings.
//
- typedef Cult::Containers::Set<NarrowString> WarningSet;
+ typedef std::set<NarrowString> WarningSet;
class Parser: public NonCopyable
{