Comment on page
CMake
- build target and library, set property
- about find_package(), etc.
std::min
andstd::max
min
andmax
are defined as macros on some systems.std::min
andstd::max
may not be used. UsecmMinimum
andcmMaximum
instead.
size_t
- Various implementations have differing implementation of
size_t
. When assigning the result of.size()
on a container for example, the result should not be assigned to anunsigned int
or similar.std::size_t
must not be used.
Last modified 2yr ago