Synopsis: | General Rules |
Description: |
This chapter concerns general rules that are not related to a specific part of C++. |
Name | Checked | Synopsis |
---|---|---|
GEN#001 | If functionality is supported in a standard C++ class library, use this library when feasible | |
GEN#002 | Company C++ code shall be clearly separated from 3rd party code | |
GEN#003 | ![]() |
Avoid pointer arithmetic . The only operators allowed on pointers are "=", "==", "!=", " ->", "[ ]" (for arrays) and the unary "*". |