From 167f36ec74182f9e4e7e2f8f078f479026cc333c Mon Sep 17 00:00:00 2001 From: jez_higgins <> Date: Thu, 13 Jul 2006 20:45:12 +0000 Subject: [PATCH] updated for latest string_adaptor - not sure how this was missed before --- SAX/helpers/XMLBaseSupport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SAX/helpers/XMLBaseSupport.h b/SAX/helpers/XMLBaseSupport.h index f233dbca..6a47ee82 100644 --- a/SAX/helpers/XMLBaseSupport.h +++ b/SAX/helpers/XMLBaseSupport.h @@ -90,7 +90,7 @@ private: static const stringT SCHEME_MARKER = string_adaptorT::construct_from_utf8("://"); static const valueT FORWARD_SLASH = string_adaptorT::convert_from_utf8(Arabica::Unicode::SLASH); - if(location.find(SCHEME_MARKER) != stringT::npos()) + if(location.find(SCHEME_MARKER) != string_adaptorT::npos()) return location; std::ostringstream ss;