Intellisense in vs2010 with c++

后端 未结 12 1896
遇见更好的自我
遇见更好的自我 2021-01-13 13:38

I can\'t get intellisense to work. Even if I start with an empty project and add just one file to it with only an include for iostream and an int main()

12条回答
  •  轮回少年
    2021-01-13 14:14

    Just throwing this out there, you are using namespace std? eg:

    std::cout.
    

    because intellisense wont work if it doesn't see cout

    edit: I over looked that error message so this isn't the case but leaving the answer in case it might help someone down the line.

提交回复
热议问题