Added newline.

Fixed signed/unsigned comparison, but actually need to remove implicit
basic_string dependencies
This commit is contained in:
jez_higgins 2004-09-11 10:17:27 +00:00
parent aa2c7837e1
commit 7633b08d00

View file

@ -90,7 +90,7 @@ private:
static const stringT SCHEME_MARKER = SA_.makeStringT("://");
static const valueT FORWARD_SLASH = SA_.makeValueT(Arabica::Unicode<char>::SLASH);
if(location.find(SCHEME_MARKER) != -1)
if(location.find(SCHEME_MARKER) != stringT::npos)
return location;
std::ostringstream ss;
@ -160,4 +160,5 @@ typedef basic_XMLBaseSupport<std::wstring> wXMLBaseSupport;
} // namespace SAX
#endif
#endif