我正在尝试使用g++-4.4
.
我有这段代码,
const std::string cnw::restoreSession(const std::vector<string> &inNwsFile) {
for (std::string &nwFile : inNwsFile){
// some...
}
}
由于此错误,我无法编译:
CNWController.cpp:154: error: expected initializer before ‘:’ token
你能给我一些关于如何解决这个问题的建议吗?