From c02ab28c60d05552f74b8ddef177275d63c8aea4 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Tue, 23 Jan 2018 15:45:02 -0800 Subject: [PATCH] fix clang build --- libraries/shared/src/SettingInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/shared/src/SettingInterface.cpp b/libraries/shared/src/SettingInterface.cpp index 9dc126a6ce..878a84da7c 100644 --- a/libraries/shared/src/SettingInterface.cpp +++ b/libraries/shared/src/SettingInterface.cpp @@ -26,7 +26,7 @@ namespace Setting { static QSharedPointer globalManager; // cleans up the settings private instance. Should only be run once at closing down. - static void cleanupPrivateInstance() { + void cleanupPrivateInstance() { // grab the thread before we nuke the instance QThread* settingsManagerThread = DependencyManager::get()->thread(); @@ -41,7 +41,7 @@ namespace Setting { settingsManagerThread->wait(); } - static void setupPrivateInstance() { + void setupPrivateInstance() { // Let's set up the settings Private instance on its own thread QThread* thread = new QThread(); Q_CHECK_PTR(thread);