From c58607f014663894d6d7720c9935dd09d16b0eef Mon Sep 17 00:00:00 2001 From: casey langen Date: Fri, 2 Dec 2016 09:42:18 -0800 Subject: [PATCH] Just kidding about fixing the clang compile -- remove static qualifier to hopefully fix it for real. --- src/core/audio/Player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/audio/Player.cpp b/src/core/audio/Player.cpp index 2b03eecb6..eb2b2430a 100644 --- a/src/core/audio/Player.cpp +++ b/src/core/audio/Player.cpp @@ -60,7 +60,7 @@ static float* hammingWindow = nullptr; namespace musik { namespace core { namespace audio { - static void playerThreadLoop(Player* player); + void playerThreadLoop(Player* player); struct FftContext { FftContext() { @@ -186,7 +186,7 @@ int Player::State() { return this->state; } -static void musik::core::audio::playerThreadLoop(Player* player) { +void musik::core::audio::playerThreadLoop(Player* player) { player->stream = Stream::Create(); BufferPtr buffer;