diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-10-27 06:58:54 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-10-27 06:58:54 +0100 |
commit | c65bf0c5c25c554667aebce9f2d3183cd3af4357 (patch) | |
tree | a2b1debcb1687faed8c0d32622119f17531a8bb6 /options | |
parent | aaed56e93ddff39159f2d0b08d857a4a01a8184a (diff) |
fix clang warnings
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(); } |