diff options
author | Chris Robinson <[email protected]> | 2019-05-26 21:28:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-26 21:28:51 -0700 |
commit | f57fedec7f8878230fb77be1d91d7c056f7e6de4 (patch) | |
tree | b10f6bf16db0f2e792b64f74388ec9ffde47791a /OpenAL32/Include | |
parent | f6f220025bd9674a33d896258b315c006cfd78f1 (diff) |
Get rid of the COUNTOF macro
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index a8c7f3cd..7019a6d4 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -33,12 +33,6 @@ #include "hrtf.h" -template<typename T, size_t N> -constexpr inline size_t countof(const T(&)[N]) noexcept -{ return N; } -#define COUNTOF countof - - #ifndef UNUSED #if defined(__cplusplus) #define UNUSED(x) |