diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:35:31 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:35:31 -0400 |
commit | 5fa8ec8586e3c9087fd68129e1b7d7f94e847a09 (patch) | |
tree | 451946789bd3fc0b79a80b5b3007d26c2159f428 /src/config.hpp | |
parent | 00da4d690af08d45788d770f9aadc9548438f074 (diff) |
begin config usage; text positioning
Diffstat (limited to 'src/config.hpp')
-rw-r--r-- | src/config.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.hpp b/src/config.hpp index 8b259db..095ca56 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -34,14 +34,14 @@ private: public: template<typename T> - static std::optional<T> get(const std::string& name) + static T get(const std::string& name) { if (values.count(name) != 0) { if (auto value = std::get_if<T>(&values[name]); value != nullptr) return *value; } - return {}; + return T(); } template<typename T> |