Is it possible to somehow ignore this error? I find it much easier to just put return in front of the code I don\'t want to run than to comment it (when the com
return
If you want disable/enable certain piece of code many times trick from old C may help you:
some_code(); more_code(); // */ /* some_code(); more_code(); // */
Now you need only to write /* at the beginning
/*