Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2010 - C++ Compile time IntelliSense errors

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

like image 436
Shwe Khine Avatar asked Jan 15 '15 14:01

Shwe Khine


1 Answers

Intellisense errors are not necessarily real compiler errors. Remember Intellisense is a separate partial compiler designed for speed over accuracy. It partially compiles your code to help generate IDE completions and also is used by the IDE underline possible errors in the Visual Studio IDE.

like image 55
drescherjm Avatar answered Nov 01 '22 19:11

drescherjm