Fix #3429 cut-and-paste snafu

[SVN r56133]
This commit is contained in:
Beman Dawes
2009-09-10 11:14:23 +00:00
parent b013e0cb2c
commit e1bfdd03e4

View File

@@ -7,10 +7,10 @@
// See http://www.boost.org/libs/config for more information. // See http://www.boost.org/libs/config for more information.
// MACRO: BOOST_NO_DELETED_FUNCTIONS // MACRO: BOOST_NO_DELETED_FUNCTIONS
// TITLE: C++0x delete functions unavailable // TITLE: C++0x =delete functions unavailable
// DESCRIPTION: The compiler does not support C++0x delete functions // DESCRIPTION: The compiler does not support C++0x =delete functions
namespace boost_no_constexpr { namespace boost_no_deleted_functions {
struct foo { struct foo {
foo() = delete; foo() = delete;