Documentation/NuttXCCodingStandard.html: Yet another small addition to the C++ coding standard overview.

This commit is contained in:
Gregory Nutt 2019-06-05 16:22:09 -06:00
parent ac8a3c40a8
commit 51d6ad2ffe

View File

@ -2765,6 +2765,10 @@ error:
There is currently no requirement to conform any specific C++ version. There is currently no requirement to conform any specific C++ version.
However, for portability reasons, conformance to older, pre-C++11 standards is encouraged where reasonable. However, for portability reasons, conformance to older, pre-C++11 standards is encouraged where reasonable.
</p> </p>
<li>
<p>
C++ file name extensions: The extension <code>.cxx</code> is used for C++ source files; the extension <code>.hxx</code> is used for C++ header files.
</p>
<li> <li>
<p> <p>
All naming must use <i>CamelCase</i>. All naming must use <i>CamelCase</i>.