diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/src/index.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/index.rst b/doc/src/index.rst index 907b58d..e0ebaad 100644 --- a/doc/src/index.rst +++ b/doc/src/index.rst @@ -169,7 +169,7 @@ Synopsis typename CharType, typename StreamTraits, typename = std::enable_if_t<DerivationClause(nt::Show)>> - auto operator<<(std::basic_ostream<CharType, StreamTraits> &&, + auto operator<<(std::basic_ostream<CharType, StreamTraits> &, new_type<BaseType, TagType, DerivationClause> const &) noexcept(/*see below*/) -> std::basic_ostream<CharType, StreamTraits> &; @@ -179,8 +179,8 @@ Synopsis typename CharType, typename StreamTraits, typename = std::enable_if_t<DerivationClause(nt::Read)>> - auto operator>>(std::basic_istream<CharType, StreamTraits> &&, - new_type<BaseType, TagType, DerivationClause> &&) noexcept(/*see below*/) + auto operator>>(std::basic_istream<CharType, StreamTraits> &, + new_type<BaseType, TagType, DerivationClause> &) noexcept(/*see below*/) -> std::basic_istream<CharType, StreamTraits> &; } |
