I use the auto keyword in my code
137 auto i = boost::find(adresses, adress);
When compiling with the following command, I get these errors
[ vickey@tb tests]$ clear;g++ testCoverDownloader.cpp ../CoverDownloader.cpp -I /usr/include/QtGui/ -I /usr/include/QtCore/ -lQtGui -lQtCore -std=c++0x ../CoverDownloader.cpp:137:10: error: 'i' does not name a type ../CoverDownloader.cpp:139:8: error: 'i' was not declared in this scope
using -std = c ++ 0x should have done the trick. What's wrong?
source share