From 483673966336f2d5d68504dc24e719d37fd7da82 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 15 Apr 2018 22:33:50 -0400 Subject: [PATCH 1/2] Common/Config: Remove unnecessary function declaration This prototype declaration is already provided by the Config.h header --- Source/Core/Common/Config/Config.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Common/Config/Config.cpp b/Source/Core/Common/Config/Config.cpp index 342ef8ec6d..9373673518 100644 --- a/Source/Core/Common/Config/Config.cpp +++ b/Source/Core/Common/Config/Config.cpp @@ -15,8 +15,6 @@ namespace Config static Layers s_layers; static std::list s_callbacks; -void InvokeConfigChangedCallbacks(); - Layers* GetLayers() { return &s_layers; From 939c5671a91988bb162f02dc10e5f805ea66269e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 15 Apr 2018 22:35:00 -0400 Subject: [PATCH 2/2] Common/Config: Remove unused header inclusions --- Source/Core/Common/Config/Config.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Common/Config/Config.cpp b/Source/Core/Common/Config/Config.cpp index 9373673518..df17d8a0db 100644 --- a/Source/Core/Common/Config/Config.cpp +++ b/Source/Core/Common/Config/Config.cpp @@ -5,9 +5,7 @@ #include #include #include -#include -#include "Common/Assert.h" #include "Common/Config/Config.h" namespace Config