diff --git a/include/st/type.hpp b/include/st/type.hpp index f302b6a..2506f75 100644 --- a/include/st/type.hpp +++ b/include/st/type.hpp @@ -14,6 +14,10 @@ namespace st class type_base { public: + explicit constexpr type_base() : _t() + { + } + explicit constexpr type_base(const T &t) : _t(t) { }