2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-27 19:32:11 +00:00

Removed missed usage of deprecated macros in Boost.Thread

[SVN r81593]
This commit is contained in:
Marshall Clow
2012-11-27 17:26:10 +00:00
parent 047ca43b72
commit e6b8a133a8
5 changed files with 7 additions and 7 deletions

View File

@@ -97,7 +97,7 @@ namespace user_test_ns
struct nc:
public boost::shared_ptr<int>
{
#ifndef BOOST_NO_RVALUE_REFERENCES
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
nc() {}
nc(nc&&)
{
@@ -120,7 +120,7 @@ namespace boost
void test_move_for_user_defined_type_unaffected()
{
user_test_ns::nc src;
#ifndef BOOST_NO_RVALUE_REFERENCES
#ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
user_test_ns::nc dest=boost::move(src);
#else
user_test_ns::nc dest=move(src);