Просмотр исходного кода

Fix unused static variable warning on OS X

- Prevent some static variables from getting declared
  when including vorbis.h since we don't need them and
  fortunately they provide a mechanism to prevent this.
Nur Monson 12 лет назад
Родитель
Сommit
483b6adf91
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      Core/Contents/Source/PolySound.cpp

+ 2 - 0
Core/Contents/Source/PolySound.cpp

@@ -21,7 +21,9 @@
 */
 
 #include "PolySound.h"
+#define OV_EXCLUDE_STATIC_CALLBACKS
 #include <vorbis/vorbisfile.h>
+#undef OV_EXCLUDE_STATIC_CALLBACKS
 #include "PolyString.h"
 #include "PolyLogger.h"