Is there any way to include */ in a C-style block comment? Changing the block comment to a series of line comments (//) is not an option in this case.
Here's an example of the sort of comment causing a problem:
/**
* perl -pe 's/(?<=.{6}).*//g' : Limit to PID
*/
Usually comments don't need to be literal, so this doesn't come up too often.
You can wrap it all in a #if block:
#if 0
whatever you want can go here, comments or not
#endif
Nope! There isn't.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With