Re: [Qt-creator] bug with BOOST_FOREACH

2009-12-06 Thread Arnaldo Leon
excellent! thank you very much -aml On Tue, Dec 1, 2009 at 3:50 AM, wrote: > > Hi, > > On Dec 1, 2009, at 3:41 AM, ext Arnaldo Leon wrote: > >> >> The error is "expected token ')' got char". I'm using boost 1.36. Note >> that I can s

[Qt-creator] bug with BOOST_FOREACH

2009-11-30 Thread Arnaldo Leon
While the following compiles fine, QtCreator is telling me that there's an error in the code: #include #include int main() { std::string s("hello"); BOOST_FOREACH(char c, s) std::cout << c << std::endl; return 0; } The error is "expected token ')' got char". I'm using boost 1.36. Note th