mirror of
https://github.com/boostorg/config.git
synced 2025-11-02 16:52:20 +01:00
51 lines
955 B
C++
51 lines
955 B
C++
// (C) Copyright John Maddock 2001. Permission to copy, use, modify, sell and
|
|
// distribute this software is granted provided this copyright notice appears
|
|
// in all copies. This software is provided "as is" without express or implied
|
|
// warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
// MACRO: BOOST_NO_AUTO_PTR
|
|
// TITLE: std::auto_ptr
|
|
// DESCRIPTION: If the compiler / library supplies non-standard or broken
|
|
// std::auto_ptr.
|
|
|
|
#include <memory>
|
|
|
|
namespace boost_no_auto_ptr{
|
|
|
|
template <class T>
|
|
class my_ptr
|
|
{
|
|
T* p;
|
|
public:
|
|
my_ptr(std::auto_ptr<T>& r)
|
|
{
|
|
p = r.release();
|
|
}
|
|
my_ptr& operator=(std::auto_ptr<T>& r)
|
|
{
|
|
delete p;
|
|
p = r.release();
|
|
return *this;
|
|
}
|
|
~my_ptr()
|
|
{
|
|
delete p;
|
|
}
|
|
};
|
|
|
|
|
|
int test()
|
|
{
|
|
std::auto_ptr<int> ap1(new int);
|
|
my_ptr<int> mp(ap1);
|
|
std::auto_ptr<int> ap2(new int);
|
|
mp = ap2;
|
|
|
|
return 0;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|