aboutsummaryrefslogtreecommitdiffstats
path: root/src/FilterRegistry.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-29 00:05:04 +0100
committerMax Kellermann <max@duempel.org>2013-10-29 00:05:04 +0100
commit095c390df736ebff74a0e2a982ef4a1220dea135 (patch)
treea515bc51178e7a01280f47b04b6f53a60d483337 /src/FilterRegistry.hxx
parent20597b3632d3b6e25ba532716106f90d5b64d0e8 (diff)
downloadmpd-095c390df736ebff74a0e2a982ef4a1220dea135.tar.gz
mpd-095c390df736ebff74a0e2a982ef4a1220dea135.tar.xz
mpd-095c390df736ebff74a0e2a982ef4a1220dea135.zip
FilterRegistry: add "pure" attribute
Diffstat (limited to 'src/FilterRegistry.hxx')
-rw-r--r--src/FilterRegistry.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/FilterRegistry.hxx b/src/FilterRegistry.hxx
index c21d8a597..286420f92 100644
--- a/src/FilterRegistry.hxx
+++ b/src/FilterRegistry.hxx
@@ -26,6 +26,8 @@
#ifndef MPD_FILTER_REGISTRY_HXX
#define MPD_FILTER_REGISTRY_HXX
+#include "Compiler.h"
+
extern const struct filter_plugin null_filter_plugin;
extern const struct filter_plugin chain_filter_plugin;
extern const struct filter_plugin convert_filter_plugin;
@@ -34,6 +36,7 @@ extern const struct filter_plugin normalize_filter_plugin;
extern const struct filter_plugin volume_filter_plugin;
extern const struct filter_plugin replay_gain_filter_plugin;
+gcc_pure
const struct filter_plugin *
filter_plugin_by_name(const char *name);