Visual C ++ error highlighting

When using the Eclipse or NetBeans IDE in a Java project, I see where the errors are in my code, before and after compilation. The line causing the problem is displayed. I remember that in the old days, the Visual C ++ 98 edition emphasized errors in the code. Is there a way to enable this in Visual C ++ 2005? Or is there a third-party plugin for this?

+3
source share
2 answers

To do this, you will need a static code analysis tool for C ++ with a real-time plug-in for VS2005. Unfortunately, I do not know of any open source static code analyzer that connect to VS2005, but there are some commercial ones. One such product that has been well received is Riverblade Visual Lint .

All in all, Googling's “Visual C ++ Visual Code Analysis” analysis is a good place to start hunting for this type of software.

+2
source

Visual Assist is also a useful tool. Works with all versions of visual studio.

+1
source

All Articles