Language
C++
Compiler
clang 7.1.0
Options
Boost 1.75.0
C++11
no pedantic
$ clang++ prog.cc -I/opt/wandbox/boost-1.75.0-clang-7.1.0/include -std=c++11
shared_ptr<T>()
shared_ptr<T>(nullptr_t)
shared_ptr<T>(T *p)
shared_ptr<T,D>(T * p, const D& del)
shared_ptr<D>(nullptr_t, const D& del)
shared_ptr<T,D,A>(T *p, const D& del, Alloc a)
shared_ptr<D,A>(nullptr_t, const D& del, Alloc a)
shared_ptr(shared_ptr&& x)
shared_ptr<T>(shared_ptr<T>&& x)
shared_ptr(const shared_ptr& x)
shared_ptr<T>(const shared_ptr<T>& x)
shared_ptr<T>(weak_ptr<T>& x)
shared_ptr<T>(auto_ptr<T>&& x)
shared_ptr<T,D>(unique_ptr<T,D>&& x)
shared_ptr<T>(const shared_ptr<T>& x, element_type *p)
Exit Code:
0