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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user