diff options
| author | MerryMage <MerryMage@users.noreply.github.com> | 2017-05-13 14:34:55 +0100 |
|---|---|---|
| committer | MerryMage <MerryMage@users.noreply.github.com> | 2017-05-13 15:22:29 +0100 |
| commit | bd3e493695302ce8efa4ef8287bc69aae981857b (patch) | |
| tree | e9c51d5da10c0ab052ad821ca8d6f2afb2163d40 /Source/Core/Common/Config/Section.h | |
| parent | af33ae0e02841af3ed5c9de7b295154d879a69d1 (diff) | |
Section: Fix Section::Get
Diffstat (limited to 'Source/Core/Common/Config/Section.h')
| -rw-r--r-- | Source/Core/Common/Config/Section.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
