mirror of
https://github.com/boostorg/utility.git
synced 2025-07-31 05:17:27 +02:00
Merge pull request #5 from Lastique/patch-1
Fix compilation with gcc 4.5 in C++11 mode
This commit is contained in:
@ -23,14 +23,14 @@ namespace noncopyable_ // protection from unintended ADL
|
|||||||
class noncopyable
|
class noncopyable
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
#ifndef BOOST_NO_DEFAULTED_FUNCTIONS
|
#if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) && !defined(BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS)
|
||||||
BOOST_CONSTEXPR noncopyable() = default;
|
BOOST_CONSTEXPR noncopyable() = default;
|
||||||
~noncopyable() = default;
|
~noncopyable() = default;
|
||||||
#else
|
#else
|
||||||
noncopyable() {}
|
noncopyable() {}
|
||||||
~noncopyable() {}
|
~noncopyable() {}
|
||||||
#endif
|
#endif
|
||||||
#ifndef BOOST_NO_DELETED_FUNCTIONS
|
#if !defined(BOOST_NO_CXX11_DELETED_FUNCTIONS)
|
||||||
noncopyable( const noncopyable& ) = delete;
|
noncopyable( const noncopyable& ) = delete;
|
||||||
noncopyable& operator=( const noncopyable& ) = delete;
|
noncopyable& operator=( const noncopyable& ) = delete;
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user