Reputation: 41
Does visual studio really not come with basic syntax checker? I've got both 2008 and 2010 and they won't show me any error, like missing semicolons or unmatched brackets
The closest advice I've found is to enable tools -> options -> text editor -> C/C++ -> Advanced -> Underline Errors in the editor, which doesn't exist
Upvotes: 2
Views: 2426
Reputation: 1
Tools->Options->Text Editor->c/c++->General-> unchecking "Word wrap" (under settings) could solve the problem. Thanks
Upvotes: 0
Reputation: 41
I figured it out..
"CLR Empty Project" doesn't have this functionality for some reason, "Empty Project" does however.
Upvotes: 2
Reputation: 397
I think C++ projects do not get active syntax checking like the counter parts in .NET languages. The errors will only appear when you build the project.
Upvotes: 0