Ran Hilai
Ran Hilai

Reputation: 3

MSVS C++ 2012: how to disable compiling-while-editting

MSVS C++ constantly checks my code as I edit and mark compile errors/warning with "red wavy underline".

I don't want to see these red wavy underlines. I want to see my errors only when I build.

Is it possible to disable this feature?

Upvotes: 0

Views: 39

Answers (1)

Matthieu Brucher
Matthieu Brucher

Reputation: 22023

Go to Tools->Options->TextEditor

Then choose C/C++->Advanced and turn off what you don't like. There are also some parameters in General that you may want to turn off (autocompletion).

Upvotes: 1

Related Questions