diff --git a/doc/expected.md b/doc/expected.md index e1355f1..b75022c 100644 --- a/doc/expected.md +++ b/doc/expected.md @@ -114,10 +114,14 @@ template /*see below*/ operator>>( F && f ) const; }; - template inline constexpr bool operator==( expected const & x1, expected const & x2 ); - template inline constexpr bool operator!=( expected const & x1, expected const & x2 ); + template + inline constexpr bool operator==( expected const & x1, expected const & x2 ); + + template + inline constexpr bool operator!=( expected const & x1, expected const & x2 ); - template inline void swap( expected & x1, expected & x2 ) noexcept( /*see below*/ ); + template + inline void swap( expected & x1, expected & x2 ) noexcept( /*see below*/ ); } // namespace variant2 } // namespace boost