Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
914 views
in Technique[技术] by (71.8m points)

visual c++ - How do I enable the 6000 series warnings (code analysis warnings) in MSVC++?

Even warning level 4 and "all warnings" does not make the 6000 series warnings appear.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Actually enabling these "Code Analysis" warnings has it's own dialog.

In your project properties, you must check "Enable Code Analysis on Build" to make it work.

code analysis

This code should then show error 6246:

#include <stdio.h>

int main()
{
  int x ;

  {
    int x = 6 ;
    printf( "%d
", x ) ;
  }

}
warning C6246: Local declaration of 'x' hides declaration of the same name in outer scope.

This setting appears to be completely independent of the "Configuration Properties/C/C++/General/Warning Level" setting in the properties dialog.

setting doesnt matter


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...