From 26899a31d9a85e6ec6cfb782b0977af05e3330c1 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 Jun 2012 11:51:14 +0200 Subject: Get rid of dependency on libcult --- xsd-frontend/semantic-graph/any-attribute.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'xsd-frontend/semantic-graph/any-attribute.cxx') diff --git a/xsd-frontend/semantic-graph/any-attribute.cxx b/xsd-frontend/semantic-graph/any-attribute.cxx index 8a8660c..a5dcd36 100644 --- a/xsd-frontend/semantic-graph/any-attribute.cxx +++ b/xsd-frontend/semantic-graph/any-attribute.cxx @@ -16,7 +16,7 @@ namespace XSDFrontend AnyAttribute (Path const& file, unsigned long line, unsigned long column, - WideString const& namespaces) + String const& namespaces) : Node (file, line, column), prototype_ (0) { @@ -26,9 +26,9 @@ namespace XSDFrontend for (size_t i (0), j (namespaces.find (L' '));;) { - if (j != WideString::npos) + if (j != String::npos) { - namespaces_.push_back (WideString (namespaces, i, j - i)); + namespaces_.push_back (String (namespaces, i, j - i)); i = j + 1; j = namespaces.find (L' ', i); @@ -37,7 +37,7 @@ namespace XSDFrontend { // Last element. // - namespaces_.push_back (WideString (namespaces, i)); + namespaces_.push_back (String (namespaces, i)); break; } } -- cgit v1.1