| High Integrity CPP Rule 14.1 | Use the C++ comment delimiters "//". Do not use the C comment delimiters "/* ... */". |
| (QA C++ 1050) |
| Justification |
The scope of C++ comments is clearer. Errors can result from nesting of C comments. |
| Reference |
Effective C++ Item 4;Industrial Strength C++ 3.4; |