diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-20 15:43:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 15:43:02 +0200 |
commit | 701dd649e61470d3172390e138fd28b745dc20b4 (patch) | |
tree | 338a1669725ad9c0c01ee04bf69f57018a28e764 /src/common/common_funcs.h | |
parent | Merge pull request #366 from lioncash/vec (diff) | |
parent | common_funcs: Remove ARRAY_SIZE macro (diff) | |
download | yuzu-701dd649e61470d3172390e138fd28b745dc20b4.tar yuzu-701dd649e61470d3172390e138fd28b745dc20b4.tar.gz yuzu-701dd649e61470d3172390e138fd28b745dc20b4.tar.bz2 yuzu-701dd649e61470d3172390e138fd28b745dc20b4.tar.lz yuzu-701dd649e61470d3172390e138fd28b745dc20b4.tar.xz yuzu-701dd649e61470d3172390e138fd28b745dc20b4.tar.zst yuzu-701dd649e61470d3172390e138fd28b745dc20b4.zip |
Diffstat (limited to 'src/common/common_funcs.h')
-rw-r--r-- | src/common/common_funcs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index 6f0604958..19a33cb57 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -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 |