summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Config/Config.cpp
diff options
context:
space:
mode:
authorLéo Lam <leolino.lam@gmail.com>2018-04-16 10:37:39 +0200
committerGitHub <noreply@github.com>2018-04-16 10:37:39 +0200
commit1cd75f9b1909e0392c806156becdbe23d99d9da2 (patch)
treeceeb72858fcb7334b23ea848f7e656cd252e6d48 /Source/Core/Common/Config/Config.cpp
parenteecdb51709a8e390d8cf000d3a3de07b05f98cf9 (diff)
parent939c5671a91988bb162f02dc10e5f805ea66269e (diff)
Merge pull request #6653 from lioncash/redundant
Common/Config: Remove redundant declaration and unused includes
Diffstat (limited to 'Source/Core/Common/Config/Config.cpp')
-rw-r--r--Source/Core/Common/Config/Config.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/Common/Config/Config.cpp b/Source/Core/Common/Config/Config.cpp
index 342ef8ec6d..df17d8a0db 100644
--- a/Source/Core/Common/Config/Config.cpp
+++ b/Source/Core/Common/Config/Config.cpp
@@ -5,9 +5,7 @@
#include <algorithm>
#include <list>
#include <map>
-#include <tuple>
-#include "Common/Assert.h"
#include "Common/Config/Config.h"
namespace Config
@@ -15,8 +13,6 @@ namespace Config
static Layers s_layers;
static std::list<ConfigChangedCallback> s_callbacks;
-void InvokeConfigChangedCallbacks();
-
Layers* GetLayers()
{
return &s_layers;