diff options
author | Max Kellermann <max@duempel.org> | 2013-01-09 08:56:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-09 08:56:16 +0100 |
commit | f8a99a391ee03054e0250392a09c5992f9ce3a56 (patch) | |
tree | dd840b9c911d9e254f62f926890c2129e2ac76eb /src | |
parent | 2564f763d7c206f36d6c10c16b78590e4a47714d (diff) | |
download | mpd-f8a99a391ee03054e0250392a09c5992f9ce3a56.tar.gz mpd-f8a99a391ee03054e0250392a09c5992f9ce3a56.tar.xz mpd-f8a99a391ee03054e0250392a09c5992f9ce3a56.zip |
ReplayGainCoinfig: make DEFAULT_REPLAYGAIN_LIMIT static
Diffstat (limited to 'src')
-rw-r--r-- | src/ReplayGainConfig.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ReplayGainConfig.cxx b/src/ReplayGainConfig.cxx index d2fe309ca..ceb51c081 100644 --- a/src/ReplayGainConfig.cxx +++ b/src/ReplayGainConfig.cxx @@ -36,7 +36,7 @@ extern "C" { enum replay_gain_mode replay_gain_mode = REPLAY_GAIN_OFF; -const bool DEFAULT_REPLAYGAIN_LIMIT = true; +static constexpr bool DEFAULT_REPLAYGAIN_LIMIT = true; float replay_gain_preamp = 1.0; float replay_gain_missing_preamp = 1.0; |