diff options
author | Brian Paul <[email protected]> | 2015-02-28 13:33:11 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-03-02 08:55:31 -0700 |
commit | 6f0e9c2e393ba17829e1338dc035c25f22a2718c (patch) | |
tree | 3830fc2bf2069861eaf54ddd92dfd06cb7fa822c | |
parent | e1437d6c0a88906191b7531f4e941fc6b06e2e4a (diff) |
mesa: remove extra definition of ARRAY_SIZE in src/mesa/main/macros.h
Already defined in src/util/macros.h
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | src/mesa/main/macros.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h index da5e8e849a2..2d7a6a107fd 100644 --- a/src/mesa/main/macros.h +++ b/src/mesa/main/macros.h @@ -803,10 +803,6 @@ DIFFERENT_SIGNS(GLfloat x, GLfloat y) #define ENUM_TO_DOUBLE(E) ((GLdouble)(GLint)(E)) #define ENUM_TO_BOOLEAN(E) ((E) ? GL_TRUE : GL_FALSE) -/* Compute the size of an array */ -#ifndef ARRAY_SIZE -# define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) -#endif /* Stringify */ #define STRINGIFY(x) #x |