aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/parser.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-05-09 16:45:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-05-09 16:45:09 +0200
commitcf2783f792ee634ffbbb36311c9f69956b1d107e (patch)
treec4a4d4a30451a65c63f3e21e04ac238e5a8ed039 /xsd-frontend/parser.hxx
parent0bc53d3b22cedbe9e1f773e0a350280aef805eeb (diff)
Use standard containers instead of ones from libcult
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
{