mirror of
https://github.com/boostorg/smart_ptr.git
synced 2026-02-03 22:05:04 +01:00
Check BOOST_NO_CXX11_RVALUE_REFERENCES in tests that use std::unique_ptr.
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
#if !defined( BOOST_NO_CXX11_SMART_PTR )
|
||||
#if !defined( BOOST_NO_CXX11_SMART_PTR ) && !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
|
||||
|
||||
struct X: public boost::enable_shared_from_this< X >
|
||||
{
|
||||
@@ -229,7 +229,7 @@ int main()
|
||||
return boost::report_errors();
|
||||
}
|
||||
|
||||
#else // !defined( BOOST_NO_CXX11_SMART_PTR )
|
||||
#else // !defined( BOOST_NO_CXX11_SMART_PTR ) && !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
|
||||
|
||||
int main()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user