diff options
author | Max Kellermann <max@musicpd.org> | 2016-12-03 12:20:32 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-12-03 12:20:32 +0100 |
commit | 513e3a3d21709798baead2be55f6305fddf934b2 (patch) | |
tree | 3c0f38b0406182b724fd4741db09f6c8558d6c84 /src/filter | |
parent | bfb0897b54bc79e079b38b6da660018e70d9be5e (diff) |
filter/ReplayGain: forward-declare struct ReplayGainInfo
Diffstat (limited to 'src/filter')
-rw-r--r-- | src/filter/plugins/ReplayGainFilterPlugin.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/filter/plugins/ReplayGainFilterPlugin.hxx b/src/filter/plugins/ReplayGainFilterPlugin.hxx index c72c5d9e7..b7c360727 100644 --- a/src/filter/plugins/ReplayGainFilterPlugin.hxx +++ b/src/filter/plugins/ReplayGainFilterPlugin.hxx @@ -20,11 +20,12 @@ #ifndef MPD_REPLAY_GAIN_FILTER_PLUGIN_HXX #define MPD_REPLAY_GAIN_FILTER_PLUGIN_HXX -#include "ReplayGainInfo.hxx" +#include "ReplayGainMode.hxx" class Filter; class PreparedFilter; class Mixer; +struct ReplayGainInfo; /** * Enables or disables the hardware mixer for applying replay gain. |