From df5eb0c9bc951a8f69ebaa70e6cccdb9e8b27c04 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 5 Sep 2012 20:26:28 -0600 Subject: [PATCH] mesa: remove #undef CONST in get.c Reviewed-by: Matt Turner --- src/mesa/main/get.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index fe1035be8ac..24d2a18fef3 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -61,8 +61,6 @@ * is about as concise as the specification in the old python script. */ -#undef CONST - #define FLOAT_TO_BOOLEAN(X) ( (X) ? GL_TRUE : GL_FALSE ) #define FLOAT_TO_FIXED(F) ( ((F) * 65536.0f > INT_MAX) ? INT_MAX : \ ((F) * 65536.0f < INT_MIN) ? INT_MIN : \ -- 2.30.2