Syntax for "Ignore section"
MartinG
I have previously used a syntax that allowed me to ignore an entire section, instead of a single line which can be done using the
"//"
but I have forgotten the syntax and can't find it in the manual. I think it was something like *// (=start ignoring) //* (=end ignoring)Anyone know this syntax?
Andy
October 12, 2016 at 11:37 am - Permalink
#if 0
[... code here is disabled ...]
#endif
[... some other code ...]
Everything between the #if 0 and the #endif will be ignored.
October 12, 2016 at 01:40 pm - Permalink
John Weeks
WaveMetrics, Inc.
support@wavemetrics.com
October 12, 2016 at 02:59 pm - Permalink