| 121 | |
| 122 | template<typename T, uint64 N> |
| 123 | uint64 ArraySize(T(&)[N]) |
| 124 | { |
| 125 | return N; |
| 126 | } |
| 127 | |
| 128 | #define ArraySize_(x) ((sizeof(x) / sizeof(0[x])) / ((size_t)(!(sizeof(x) % sizeof(0[x]))))) |
| 129 |
nothing calls this directly
no outgoing calls
no test coverage detected