diff options
-rw-r--r-- | src/mesa/main/mtypes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 5409abaf1a..95a7988d7e 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -85,7 +85,11 @@ typedef GLuint64 GLbitfield64; /** Set a single bit */ +#ifdef __cplusplus +#define BITFIELD64_BIT(b) (1UL << (b)) +#else #define BITFIELD64_BIT(b) (1ULL << (b)) +#endif /** |