diff options
Diffstat (limited to 'options')
-rw-r--r-- | options/value.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options/value.hpp b/options/value.hpp index f16878ce..92e2878f 100644 --- a/options/value.hpp +++ b/options/value.hpp @@ -150,7 +150,7 @@ public: auto operator->() const noexcept { - return detail::dereference_wrapper{get()}; + return detail::dereference_wrapper<t>{get()}; } force_inline auto operator()() const noexcept { return get(); } |