mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-29 08:36:45 +01:00
can see it now - uninitialised variable
This commit is contained in:
parent
2e6c372933
commit
95a3a42002
1 changed files with 1 additions and 1 deletions
|
@ -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) ||
|
||||
|
|
Loading…
Add table
Reference in a new issue