• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javaandroidc++linuxc#windowsobjective-ccocoaqtpython誰得phprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Cross-Platform OpenGL Windowing Library


コミットメタ情報

リビジョンf456fb151b28b1663926a9f9cd673c89e2375da4 (tree)
日時2018-11-12 06:31:57
作者AlaskanEmily <emily@alas...>
コミッターAlaskanEmily

ログメッセージ

Fix preprocessor warning

変更サマリ

差分

--- a/glow.h
+++ b/glow.h
@@ -12,7 +12,7 @@
1212 extern "C" {
1313 #endif
1414
15-#ifdef __GNUC__ && __GNUC__ > 4
15+#if defined ( __GNUC__ ) && ( __GNUC__ > 4 )
1616 #define GLOW_CONST __attribute__((const))
1717 #define GLOW_PURE __attribute__((pure))
1818 #define GLOW_RETURNS_NOT_NULL __attribute__((returns_nonnull))