From be5f19f7cf2f03505c9344e9f7f77d2788aa7bfc Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 3 Jun 2017 14:45:22 +0300 Subject: [PATCH] Update expected.md --- doc/expected.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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