can see it now - uninitialised variable

This commit is contained in:
jez 2007-12-23 09:51:28 +00:00
parent 2e6c372933
commit 95a3a42002

View file

@ -18,7 +18,7 @@ namespace XML
return false;
++s;
for(std::string::const_iterator se; s != se; ++s)
for(std::string::const_iterator se = str.end(); s != se; ++s)
{
wchar_t c = static_cast<wchar_t>(*s);
if(!(is_letter(c) ||