diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-09-20 20:28:56 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-09-21 13:55:02 +0300 |
commit | e390f9f618ec694e5327ebe93cdfc0ba89ab5a86 (patch) | |
tree | a9d7e586af86304a722f1d66f255ec631f0d5a03 /Documentation/coding-style.rst | |
parent | beed258a5a3f6a690c6774d37815527fe60375eb (diff) |
Documentation: Adjust guidelines regarding math.h header
While libcamera prefers usage of the C standard library headers (xxx.h)
over the C++ version (cxxx), we make an exception for cmath as the
overloaded versions of the math functions are convenient. Document this,
and adjust checkstyle.py accordingly.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'Documentation/coding-style.rst')
-rw-r--r-- | Documentation/coding-style.rst | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Documentation/coding-style.rst b/Documentation/coding-style.rst index 7c56a1b7..8af06d6a 100644 --- a/Documentation/coding-style.rst +++ b/Documentation/coding-style.rst @@ -195,9 +195,17 @@ them, defines C compatibility headers. The former have a name of the form <cxxx> while the later are named <xxx.h>. The C++ headers declare names in the std namespace, and may declare the same names in the global namespace. The C compatibility headers declare names in the global namespace, and may declare -the same names in the std namespace. Usage of the C compatibility headers is -strongly preferred. Code shall not rely on the optional declaration of names in -the global or std namespace. +the same names in the std namespace. Code shall not rely on the optional +declaration of names in the global or std namespace. + +Usage of the C compatibility headers is preferred, except for the math.h header. +Where math.h defines separate functions for different argument types (e.g. +abs(int), labs(long int), fabs(double) and fabsf(float)) and requires the +developer to pick the right function, cmath defines overloaded functions +(std::abs(int), std::abs(long int), std::abs(double) and std::abs(float) to let +the compiler select the right function. This avoids potential errors such as +calling abs(int) with a float argument, performing an unwanted implicit integer +conversion. For this reason, cmath is preferred over math.h. Documentation |