Sto usando la funzione tbb :: parallel_for che utilizza lambda. Sto ottenendo gli errori di sintassi con il seguente codice:Come abilitare il compilatore C++ 11 su Visual Studio 2010 Express Edition?
void parallel_relax(Class object, std::vector<Vertex *> verList) {
tbb::parallel_for (blocked_range<int>(0, verList.size()), [=](const blocked_range<Vertex *>& r) {
for(Vertex *vit = r.begin(); vit != r.end(); ++vit) {
Vertex *v = vit;
object.function(v);
}
});
}
errori di sintassi:
syntax error : '['
1>main.cpp(16): error C2143: syntax error : missing ')' before '{'
1>main.cpp(16): error C2143: syntax error : missing ';' before '{'
1>main.cpp(17): error C2065: 'r' : undeclared identifier
1>main.cpp(17): error C2228: left of '.begin' must have class/struct/union
1> type is ''unknown-type''
1>main.cpp(17): error C2065: 'r' : undeclared identifier
1>main.cpp(17): error C2228: left of '.end' must have class/struct/union
1> type is ''unknown-type''
1>main.cpp(20): error C2059: syntax error : ')'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Credo che questo sia il problema con il compilatore. Come ottengo il compilatore C++ 11 per Visual Studio 2010 Express Edition. Si prega di suggerire.
Quali sono le righe 16 e 17? –
"tbb :: parallel_for" è la riga 16 e "for (Vertex * vit = r.begin(); vit! = R.end(); ++ vit)" è la riga 17 – Hello
quindi non potrò usare C++ 11 perché sto usando Windows 7 e posso usare solo Visual Studio 2010? BTW ... Non voglio usare Eclipse con MinGW G ++ perché lo trovo brutto ... :( – ha9u63ar