From bd3e493695302ce8efa4ef8287bc69aae981857b Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sat, 13 May 2017 14:34:55 +0100 Subject: [PATCH] Section: Fix Section::Get --- Source/Core/Common/Config/Section.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Config/Section.h b/Source/Core/Common/Config/Section.h index 4b4ba263ad..8b36ce157e 100644 --- a/Source/Core/Common/Config/Section.h +++ b/Source/Core/Common/Config/Section.h @@ -65,7 +65,7 @@ public: T Get(const std::string& key, const T& default_value) const { T value; - Get(key, value, default_value); + Get(key, &value, default_value); return value; }