Eclipse C++: Symbol 'std' could not be resolved

前端 未结 10 1173
刺人心
刺人心 2020-12-08 03:01

I am getting this error in the TestExecute.cpp -

\"Symbol \'std\' could not be resolved\"

CODE

#include 

        
10条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-08 03:04

    The includes folder in the project is probably missing /usr/include/c++. Goto your project in project explorer, right click -> Properties -> C\C++ Build -> Environment -> add -> value= /usr/include/c++. Restart eclipse.

提交回复
热议问题