diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
commit | 85b77b81caa40f8bcd03921380246cb5863d5d21 (patch) | |
tree | cf4bc60a6760c52bcbd642a253b45f3bc5ad8775 /test/read_mixer.cxx | |
parent | 5bf2ec5a74bb1247a8cc84e90577eecbee116c62 (diff) |
*: use gcc.h macros instead of GLib
Diffstat (limited to 'test/read_mixer.cxx')
-rw-r--r-- | test/read_mixer.cxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index 54c92eea3..0cc84c9b9 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -39,31 +39,31 @@ EventLoop *main_loop; #include "output/PulseOutputPlugin.hxx" void -pulse_output_lock(G_GNUC_UNUSED PulseOutput *po) +pulse_output_lock(gcc_unused PulseOutput *po) { } void -pulse_output_unlock(G_GNUC_UNUSED PulseOutput *po) +pulse_output_unlock(gcc_unused PulseOutput *po) { } void -pulse_output_set_mixer(G_GNUC_UNUSED PulseOutput *po, - G_GNUC_UNUSED PulseMixer *pm) +pulse_output_set_mixer(gcc_unused PulseOutput *po, + gcc_unused PulseMixer *pm) { } void -pulse_output_clear_mixer(G_GNUC_UNUSED PulseOutput *po, - G_GNUC_UNUSED PulseMixer *pm) +pulse_output_clear_mixer(gcc_unused PulseOutput *po, + gcc_unused PulseMixer *pm) { } bool -pulse_output_set_volume(G_GNUC_UNUSED PulseOutput *po, - G_GNUC_UNUSED const struct pa_cvolume *volume, - G_GNUC_UNUSED GError **error_r) +pulse_output_set_volume(gcc_unused PulseOutput *po, + gcc_unused const struct pa_cvolume *volume, + gcc_unused GError **error_r) { return false; } @@ -81,7 +81,7 @@ roar_output_get_volume(gcc_unused RoarOutput *roar) bool roar_output_set_volume(gcc_unused RoarOutput *roar, - G_GNUC_UNUSED unsigned volume) + gcc_unused unsigned volume) { return true; } @@ -94,22 +94,22 @@ GlobalEvents::Emit(gcc_unused Event event) } const struct filter_plugin * -filter_plugin_by_name(G_GNUC_UNUSED const char *name) +filter_plugin_by_name(gcc_unused const char *name) { assert(false); return NULL; } bool -pcm_volume(G_GNUC_UNUSED void *buffer, G_GNUC_UNUSED size_t length, - G_GNUC_UNUSED SampleFormat format, - G_GNUC_UNUSED int volume) +pcm_volume(gcc_unused void *buffer, gcc_unused size_t length, + gcc_unused SampleFormat format, + gcc_unused int volume) { assert(false); return false; } -int main(int argc, G_GNUC_UNUSED char **argv) +int main(int argc, gcc_unused char **argv) { GError *error = NULL; bool success; |