diff options
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> |