summaryrefslogtreecommitdiff
path: root/src/playlist/plugins
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2016-09-09 17:59:42 +0200
committerMax Kellermann <max@musicpd.org>2016-09-09 17:59:42 +0200
commit4ee3820bd61c63ddc55833f58429d4c2246f9bf4 (patch)
treea19edffdb1d06d911e3df418b8eccce3d75efeb6 /src/playlist/plugins
parentc155df5d7971d79732e1c849286a6ff65bebfb05 (diff)
playlist/SoundCloud: make parse_callbacks constexpr
Diffstat (limited to 'src/playlist/plugins')
-rw-r--r--src/playlist/plugins/SoundCloudPlaylistPlugin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx b/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx
index 663cee1ef..d4d332657 100644
--- a/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx
+++ b/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx
@@ -209,7 +209,7 @@ handle_end_map(void *ctx)
return 1;
}
-static yajl_callbacks parse_callbacks = {
+static constexpr yajl_callbacks parse_callbacks = {
nullptr,
nullptr,
handle_integer,