Revert empty class parameter passing ABI changes.
[gcc.git] / libstdc++-v3 / include / bits / shared_ptr.h
index f4c27543c7bd49f5ebfc7dd69e9223e871fd201f..b22477e96b29acefa3f8c93b7be15945d83e6133 100644 (file)
@@ -166,7 +166,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        *  __shared_ptr will release __p by calling __d(__p)
        */
       template<typename _Tp1, typename _Deleter, typename _Alloc>
-       _GLIBCXX_ABI_TAG_EMPTY
        shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a)
        : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
 
@@ -186,7 +185,6 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        *  The last owner will call __d(__p)
        */
       template<typename _Deleter, typename _Alloc>
-       _GLIBCXX_ABI_TAG_EMPTY
        shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
        : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }