diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-19 16:07:30 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-01-20 11:53:55 +0100 |
commit | 17b44320607e89d4914736bcb2978271f410deb9 (patch) | |
tree | a857aed36799c8e2c74e16591c86bd56a225c8d1 /options | |
parent | 11b3fff51e39cd98c62b0b59fe95aa51f8b30627 (diff) |
remove mistaken usages of std::forward
I originally mistaken what the function did.
Diffstat (limited to 'options')
-rw-r--r-- | options/value.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/value.hpp b/options/value.hpp index 87bb2a85..c8fb02ca 100644 --- a/options/value.hpp +++ b/options/value.hpp @@ -103,7 +103,7 @@ public: } never_inline - operator t() const { return std::forward<t>(get()); } + operator t() const { return get(); } never_inline t operator->() const @@ -135,7 +135,7 @@ public: never_inline u to() const { - return static_cast<u>(std::forward<t>(get())); + return static_cast<u>(get()); } private: |