From 90801c5afeb37e4297076bdd5354ba41a7009a3f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 9 May 2012 17:23:47 +0200 Subject: Use standard types instead of ones from libcult --- xsd-frontend/semantic-graph/any.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'xsd-frontend/semantic-graph/any.cxx') diff --git a/xsd-frontend/semantic-graph/any.cxx b/xsd-frontend/semantic-graph/any.cxx index 02f4199..75eb5dd 100644 --- a/xsd-frontend/semantic-graph/any.cxx +++ b/xsd-frontend/semantic-graph/any.cxx @@ -14,8 +14,8 @@ namespace XSDFrontend { Any:: Any (Path const& file, - UnsignedLong line, - UnsignedLong column, + unsigned long line, + unsigned long column, WideString const& namespaces) : Node (file, line, column), prototype_ (0) @@ -24,7 +24,7 @@ namespace XSDFrontend // chararcter. // - for (Size i (0), j (namespaces.find (L' '));;) + for (size_t i (0), j (namespaces.find (L' '));;) { if (j != WideString::npos) { @@ -45,8 +45,8 @@ namespace XSDFrontend Any:: Any (Path const& file, - UnsignedLong line, - UnsignedLong column, + unsigned long line, + unsigned long column, NamespaceIterator begin, NamespaceIterator end) : Node (file, line, column), -- cgit v1.1