mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-28 22:23:21 +01:00
Added newline.
Fixed signed/unsigned comparison, but actually need to remove implicit basic_string dependencies
This commit is contained in:
parent
aa2c7837e1
commit
7633b08d00
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue