From a6754e29a69e25a76e99e0c7dafca0431da9d273 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sat, 17 Jan 2015 19:36:23 +0300 Subject: [PATCH] Compilation fix --- Utilities/Thread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Utilities/Thread.cpp b/Utilities/Thread.cpp index 01ff0787be..a3831a3f98 100644 --- a/Utilities/Thread.cpp +++ b/Utilities/Thread.cpp @@ -740,8 +740,8 @@ void waiter_map_t::notify(u64 signal_id) } } -static const std::function SQUEUE_ALWAYS_EXIT = [](){ return true; }; -static const std::function SQUEUE_NEVER_EXIT = [](){ return false; }; +const std::function SQUEUE_ALWAYS_EXIT = [](){ return true; }; +const std::function SQUEUE_NEVER_EXIT = [](){ return false; }; bool squeue_test_exit() {