Hey there!
I guess many of you know this problem, when programming C++ with visual studio, there are cases which a simple syntax error can cause many hundreds of compiler errors. For example if you forget the ; in the end of a class definition, Visual studio will output many syntax errors in files which are actually completely fine.
Is there a way to quickly find the source of such a problem?
Thanks!