Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
/* comment with end comment marker unintentionally ommittedomitted
...
security_critical_function();
/* some other comment */

...

In cases where this is the result of an accidental ommisionomission, it is useful to use an editor that provides syntax highlighting or formats the code to help identify issues like missing end comment deliminators.

...

Comment out blocks of code using condition conditional compilation (e.g., #if or #ifdef).

...