From d66563448446a2daaaeb6a960e51a6aebb3f5193 Mon Sep 17 00:00:00 2001 From: Vlad Glagolev Date: Fri, 11 Dec 2020 16:07:51 -0800 Subject: [PATCH] Fix build with clang++ 3.4 (#2279) --- include/adapters/pulseaudio.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/adapters/pulseaudio.hpp b/include/adapters/pulseaudio.hpp index 39eceb66..09398ac1 100644 --- a/include/adapters/pulseaudio.hpp +++ b/include/adapters/pulseaudio.hpp @@ -63,7 +63,7 @@ class pulseaudio { pa_cvolume cv; bool muted{false}; // default sink name - static constexpr auto DEFAULT_SINK{"@DEFAULT_SINK@"}; + static constexpr auto DEFAULT_SINK = "@DEFAULT_SINK@"; pa_context* m_context{nullptr}; pa_threaded_mainloop* m_mainloop{nullptr};