Visual Studio 2010 - C ++ IntelliSense Compilation Time

Sometimes, when I compile projects in C ++, the build is successful, saying "Build Succeeded". But, if you click on the error list, it may show some errors, such as "IntelliSense: incomplete type not allowed." My question is what are the IntelliSense errors and should I have problems with the output executable?

+4
source share
2 answers

Intellisense errors are not necessarily real compiler errors. Remember that Intellisense is a separate partial compiler designed to improve accuracy. It partially compiles your code to help generate the completion of the IDE, and also uses the IDE to highlight possible errors in the Visual Studio IDE.

+4
source

IntelliSense analyzer, starting with VS2010, is a product of another company. EDG, the Edison Design Group, is well known in the C ++ world for being the only one who has ever written an interface for C ++ 03 that is 100% compatible with this standard.

100% MSV++. VS2010 , . , MSV++ , . , , Microsoft , , . , .

. , , , - g++ clang. , , .

+4

All Articles