Section: Fix Section::Get

This commit is contained in:
MerryMage 2017-05-13 14:34:55 +01:00
parent af33ae0e02
commit bd3e493695

View file

@ -65,7 +65,7 @@ public:
T Get(const std::string& key, const T& default_value) const T Get(const std::string& key, const T& default_value) const
{ {
T value; T value;
Get(key, value, default_value); Get(key, &value, default_value);
return value; return value;
} }