diff options
author | simon <none@none> | 2013-09-09 12:59:17 -0700 |
---|---|---|
committer | simon <none@none> | 2013-09-09 12:59:17 -0700 |
commit | e7ac4695e31821118dd1bc9ddc95f46f012abbda (patch) | |
tree | f971732dddf9173d5a9a75163f5e8312a3d5054a /indra/media_plugins/webkit/mac_volume_catcher.cpp | |
parent | 36dea0dad802158a0e546220163f4461fbd3e204 (diff) | |
parent | 55ae6a7962cdc9a9d7d087fbc529d30db9c37013 (diff) |
Merge viewer-release
Diffstat (limited to 'indra/media_plugins/webkit/mac_volume_catcher.cpp')
-rwxr-xr-x | indra/media_plugins/webkit/mac_volume_catcher.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/media_plugins/webkit/mac_volume_catcher.cpp b/indra/media_plugins/webkit/mac_volume_catcher.cpp index 8a06bb8487..cc94556413 100755 --- a/indra/media_plugins/webkit/mac_volume_catcher.cpp +++ b/indra/media_plugins/webkit/mac_volume_catcher.cpp @@ -35,10 +35,13 @@ #include "volume_catcher.h" -#include <Carbon/Carbon.h> #include <QuickTime/QuickTime.h> #include <AudioUnit/AudioUnit.h> +#if LL_DARWIN +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" +#endif + struct VolumeCatcherStorage; class VolumeCatcherImpl @@ -266,3 +269,6 @@ void VolumeCatcher::pump() // No periodic tasks are necessary for this implementation. } +#if LL_DARWIN +#pragma GCC diagnostic warning "-Wdeprecated-declarations" +#endif |