1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a build warning on older gcc versions

This commit is contained in:
tpoole 2017-07-07 11:17:11 +01:00
parent 10b7aa3c16
commit 680a0d671c

View file

@ -19,7 +19,7 @@
#pragma warning (disable: 4456 4457 4459) #pragma warning (disable: 4456 4457 4459)
#endif #endif
#if JUCE_GCC #if JUCE_GCC && __GNUC__ > 6
#pragma GCC diagnostic push #pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmisleading-indentation" #pragma GCC diagnostic ignored "-Wmisleading-indentation"
#endif #endif
@ -2353,6 +2353,6 @@ int ov_time_seek_page_lap(OggVorbis_File *vf,double pos){
return _ov_d_seek_lap(vf,pos,ov_time_seek_page); return _ov_d_seek_lap(vf,pos,ov_time_seek_page);
} }
#if JUCE_GCC #if JUCE_GCC && __GNUC__ > 6
#pragma GCC diagnostic pop #pragma GCC diagnostic pop
#endif #endif