common_funcs: Remove ARRAY_SIZE macro

C++17 has non-member size() which we can just call where necessary.
This commit is contained in:
Lioncash 2018-04-19 22:36:48 -04:00
parent 17ad56c1dc
commit d9e316e353
3 changed files with 4 additions and 5 deletions

View file

@ -9,8 +9,6 @@
#endif
#include "common/common_types.h"
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
/// Textually concatenates two tokens. The double-expansion is required by the C preprocessor.
#define CONCAT2(x, y) DO_CONCAT2(x, y)
#define DO_CONCAT2(x, y) x##y