Reputation: 47
I working on a unreal engine 4.20 project, I compile my project successfully, but show many IntelliSense errors.
I searched in the google and stackoverflow. I deleted .vs folder .suo file and unload/load the project. also I installed Windows Universal CRT SDK and Windows 8.1 SDK/Windows 10 SDK but still have problem.
Even I create new first person unreal engine project, It show me huge IntelliSense errors while i can compile project without any errors.
What is problem? how can fix that?
Upvotes: 1
Views: 359
Reputation: 316
In epic's docs it's mentioned that intellisense could detect false errors because the intellisense system is too slow to scan all the files of the project and the engine. The solution suggested in the docs is to hide the intellisense errors and to only inspect the errors which are displayed by the compiler output. You can do this by setting the dropdown to Build
.
For more information visit https://docs.unrealengine.com/4.26/en-US/ProductionPipelines/DevelopmentSetup/VisualStudioSetup/
Upvotes: 2