Remove irrelevant warning pragma

This commit is contained in:
Jean Pierre Cimalando 2020-06-23 05:37:27 +02:00
parent 0f10991dd9
commit 957d1b1864

View file

@ -516,7 +516,6 @@ void sfz::FilePool::waitForBackgroundLoading() noexcept
void sfz::FilePool::raiseCurrentThreadPriority() noexcept
{
#if defined(_WIN32)
#pragma message("Implement Win32 thread background priority")
HANDLE thread = GetCurrentThread();
const int priority = THREAD_PRIORITY_ABOVE_NORMAL; /*THREAD_PRIORITY_HIGHEST*/
if (!SetThreadPriority(thread, priority)) {