#include <sys/types.h>
#include <type_traits>
|
| #define | ArraySize(array) |
| | A way of computing an array’s size.
|
| |
|
|
template<typename ArrayType> |
| constexpr size_t | crashpad::internal::ArraySizeHelper () noexcept |
| | A helper to implement ArraySize.
|
| |
◆ ArraySize
| #define ArraySize |
( |
| array | ) |
|
Value:
constexpr size_t ArraySizeHelper() noexcept
A helper to implement ArraySize.
Definition arraysize.h:29
A way of computing an array’s size.
Use this only where std::size() won’t work, such as in constant expressions (including static_assert expressions) that consider the sizes of non-static data members.