Re: [Mingw-w64-public] std::isalpha

2011-01-07 Thread Kai Tietz
2011/1/7 Kai Tietz : > 2011/1/7 ArbolOne : >> Glib::ustring s("C/C++"); >>     std::locale loc; >> >> for (Glib::ustring::iterator it=s.begin(); it!=s.end(); ++it) { >>         if (std::isalpha(*it,loc)) // <<<=== Here is the problem !! >>        { >>             std::cout << "it is alpha" <<

Re: [Mingw-w64-public] std::isalpha

2011-01-07 Thread Kai Tietz
2011/1/7 ArbolOne : > Glib::ustring s("C/C++"); >     std::locale loc; > > for (Glib::ustring::iterator it=s.begin(); it!=s.end(); ++it) { >         if (std::isalpha(*it,loc)) // <<<=== Here is the problem !! >        { >             std::cout << "it is alpha" << std::endl; >         } > I am

[Mingw-w64-public] std::isalpha

2011-01-07 Thread ArbolOne
Glib::ustring s("C/C++"); std::locale loc; for (Glib::ustring::iterator it=s.begin(); it!=s.end(); ++it) { if (std::isalpha(*it,loc)) // <<<=== Here is the problem !! { std::cout << "it is alpha" << std::endl; } I am having serious problem trying to