Cross-Platform OpenGL Windowing Library
リビジョン | f456fb151b28b1663926a9f9cd673c89e2375da4 (tree) |
---|---|
日時 | 2018-11-12 06:31:57 |
作者 | AlaskanEmily <emily@alas...> |
コミッター | AlaskanEmily |
Fix preprocessor warning
@@ -12,7 +12,7 @@ | ||
12 | 12 | extern "C" { |
13 | 13 | #endif |
14 | 14 | |
15 | -#ifdef __GNUC__ && __GNUC__ > 4 | |
15 | +#if defined ( __GNUC__ ) && ( __GNUC__ > 4 ) | |
16 | 16 | #define GLOW_CONST __attribute__((const)) |
17 | 17 | #define GLOW_PURE __attribute__((pure)) |
18 | 18 | #define GLOW_RETURNS_NOT_NULL __attribute__((returns_nonnull)) |