From cb2b706bf29a248ae7fb67732d3ee4e5da1815e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Krzemie=C5=84ski?= Date: Thu, 11 Jan 2018 21:22:59 +0100 Subject: [PATCH] comment/whitespace fixes --- test/boost_no_cxx11_defaulted_moves.ipp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/boost_no_cxx11_defaulted_moves.ipp b/test/boost_no_cxx11_defaulted_moves.ipp index 1e7fd941..9bf27633 100644 --- a/test/boost_no_cxx11_defaulted_moves.ipp +++ b/test/boost_no_cxx11_defaulted_moves.ipp @@ -7,14 +7,14 @@ // See http://www.boost.org/libs/config for more information. // MACRO: BOOST_NO_CXX11_DEFAULTED_MOVES -// TITLE: C++0x defaulting of move constructor/assignmet unavailable -// DESCRIPTION: The compiler does not support C++0x defaulting of move constructor/assignmet +// TITLE: C++0x defaulting of move constructor/assignment unavailable +// DESCRIPTION: The compiler does not support C++0x defaulting of move constructor/assignment namespace boost_no_cxx11_defaulted_moves { struct foo { foo(foo&&) = default; - foo& operator=(foo&&) = default; + foo& operator=(foo&&) = default; }; int test()