comment/whitespace fixes

This commit is contained in:
Andrzej Krzemieński
2018-01-11 21:22:59 +01:00
committed by GitHub
parent 0d0211e4d5
commit cb2b706bf2

View File

@ -7,14 +7,14 @@
// See http://www.boost.org/libs/config for more information. // See http://www.boost.org/libs/config for more information.
// MACRO: BOOST_NO_CXX11_DEFAULTED_MOVES // MACRO: BOOST_NO_CXX11_DEFAULTED_MOVES
// TITLE: C++0x defaulting of move constructor/assignmet unavailable // TITLE: C++0x defaulting of move constructor/assignment unavailable
// DESCRIPTION: The compiler does not support C++0x defaulting of move constructor/assignmet // DESCRIPTION: The compiler does not support C++0x defaulting of move constructor/assignment
namespace boost_no_cxx11_defaulted_moves { namespace boost_no_cxx11_defaulted_moves {
struct foo { struct foo {
foo(foo&&) = default; foo(foo&&) = default;
foo& operator=(foo&&) = default; foo& operator=(foo&&) = default;
}; };
int test() int test()