diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2010-08-11 07:42:02 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2010-08-11 07:42:02 +0000 |
commit | 8fe286ea6d3807259c46054ea1f11d1a26ed4cc0 (patch) | |
tree | f448f5411bed4ebdab16f61eda28c84cd2e1da3e /libstdc++-v3 | |
parent | 4d053ac1a9b71b8b55184460b8dd225e8df1ec77 (diff) | |
download | gcc-8fe286ea6d3807259c46054ea1f11d1a26ed4cc0.tar.gz |
unique_ptr.h: Replace _Tp_Deleter -> _Dp, and _Up_Deleter -> _Ep.
2010-08-11 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/unique_ptr.h: Replace _Tp_Deleter -> _Dp, and
_Up_Deleter -> _Ep.
From-SVN: r163092
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/unique_ptr.h | 110 |
2 files changed, 60 insertions, 55 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e23edfc4518..390bbcc1dfc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2010-08-11 Paolo Carlini <paolo.carlini@oracle.com> + + * include/bits/unique_ptr.h: Replace _Tp_Deleter -> _Dp, and + _Up_Deleter -> _Ep. + 2010-08-10 Paolo Carlini <paolo.carlini@oracle.com> * include/bits/shared_ptr_base.h: Remove a few now redundant diff --git a/libstdc++-v3/include/bits/unique_ptr.h b/libstdc++-v3/include/bits/unique_ptr.h index cf05ec2a4ea..1dfba0b825e 100644 --- a/libstdc++-v3/include/bits/unique_ptr.h +++ b/libstdc++-v3/include/bits/unique_ptr.h @@ -78,10 +78,10 @@ _GLIBCXX_BEGIN_NAMESPACE(std) }; /// 20.7.12.2 unique_ptr for single objects. - template <typename _Tp, typename _Tp_Deleter = default_delete<_Tp> > + template <typename _Tp, typename _Dp = default_delete<_Tp> > class unique_ptr { - typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type; + typedef std::tuple<_Tp*, _Dp> __tuple_type; // use SFINAE to determine whether _Del::pointer exists class _Pointer @@ -92,7 +92,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) template<typename _Up> static _Tp* __test(...); - typedef typename remove_reference<_Tp_Deleter>::type _Del; + typedef typename remove_reference<_Dp>::type _Del; public: typedef decltype( __test<_Del>(0) ) type; @@ -101,7 +101,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) public: typedef typename _Pointer::type pointer; typedef _Tp element_type; - typedef _Tp_Deleter deleter_type; + typedef _Dp deleter_type; // Constructors. unique_ptr() @@ -134,24 +134,24 @@ _GLIBCXX_BEGIN_NAMESPACE(std) unique_ptr(unique_ptr&& __u) : _M_t(__u.release(), std::forward<deleter_type>(__u.get_deleter())) { } - template<typename _Up, typename _Up_Deleter, typename = typename + template<typename _Up, typename _Ep, typename = typename std::enable_if - <std::is_convertible<typename unique_ptr<_Up, _Up_Deleter>::pointer, + <std::is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value && !std::is_array<_Up>::value - && ((std::is_reference<_Tp_Deleter>::value - && std::is_same<_Up_Deleter, _Tp_Deleter>::value) - || (!std::is_reference<_Tp_Deleter>::value - && std::is_convertible<_Up_Deleter, _Tp_Deleter>::value))> + && ((std::is_reference<_Dp>::value + && std::is_same<_Ep, _Dp>::value) + || (!std::is_reference<_Dp>::value + && std::is_convertible<_Ep, _Dp>::value))> ::type> - unique_ptr(unique_ptr<_Up, _Up_Deleter>&& __u) + unique_ptr(unique_ptr<_Up, _Ep>&& __u) : _M_t(__u.release(), std::forward<deleter_type>(__u.get_deleter())) { } #if _GLIBCXX_DEPRECATED template<typename _Up, typename = typename std::enable_if<std::is_convertible<_Up*, _Tp*>::value - && std::is_same<_Tp_Deleter, + && std::is_same<_Dp, default_delete<_Tp>>::value>::type> unique_ptr(auto_ptr<_Up>&& __u) : _M_t(__u.release(), deleter_type()) { } @@ -169,13 +169,13 @@ _GLIBCXX_BEGIN_NAMESPACE(std) return *this; } - template<typename _Up, typename _Up_Deleter, typename = typename + template<typename _Up, typename _Ep, typename = typename std::enable_if - <std::is_convertible<typename unique_ptr<_Up, _Up_Deleter>::pointer, + <std::is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value && !std::is_array<_Up>::value>::type> unique_ptr& - operator=(unique_ptr<_Up, _Up_Deleter>&& __u) + operator=(unique_ptr<_Up, _Ep>&& __u) { reset(__u.release()); get_deleter() = std::move(__u.get_deleter()); @@ -256,15 +256,15 @@ _GLIBCXX_BEGIN_NAMESPACE(std) // [unique.ptr.runtime] // _GLIBCXX_RESOLVE_LIB_DEFECTS // DR 740 - omit specialization for array objects with a compile time length - template<typename _Tp, typename _Tp_Deleter> - class unique_ptr<_Tp[], _Tp_Deleter> + template<typename _Tp, typename _Dp> + class unique_ptr<_Tp[], _Dp> { - typedef std::tuple<_Tp*, _Tp_Deleter> __tuple_type; + typedef std::tuple<_Tp*, _Dp> __tuple_type; public: typedef _Tp* pointer; typedef _Tp element_type; - typedef _Tp_Deleter deleter_type; + typedef _Dp deleter_type; // Constructors. unique_ptr() @@ -298,8 +298,8 @@ _GLIBCXX_BEGIN_NAMESPACE(std) unique_ptr(unique_ptr&& __u) : _M_t(__u.release(), std::forward<deleter_type>(__u.get_deleter())) { } - template<typename _Up, typename _Up_Deleter> - unique_ptr(unique_ptr<_Up, _Up_Deleter>&& __u) + template<typename _Up, typename _Ep> + unique_ptr(unique_ptr<_Up, _Ep>&& __u) : _M_t(__u.release(), std::forward<deleter_type>(__u.get_deleter())) { } @@ -315,9 +315,9 @@ _GLIBCXX_BEGIN_NAMESPACE(std) return *this; } - template<typename _Up, typename _Up_Deleter> + template<typename _Up, typename _Ep> unique_ptr& - operator=(unique_ptr<_Up, _Up_Deleter>&& __u) + operator=(unique_ptr<_Up, _Ep>&& __u) { reset(__u.release()); get_deleter() = std::move(__u.get_deleter()); @@ -419,63 +419,63 @@ _GLIBCXX_BEGIN_NAMESPACE(std) __tuple_type _M_t; }; - template<typename _Tp, typename _Tp_Deleter> + template<typename _Tp, typename _Dp> inline void - swap(unique_ptr<_Tp, _Tp_Deleter>& __x, - unique_ptr<_Tp, _Tp_Deleter>& __y) + swap(unique_ptr<_Tp, _Dp>& __x, + unique_ptr<_Tp, _Dp>& __y) { __x.swap(__y); } - template<typename _Tp, typename _Tp_Deleter, - typename _Up, typename _Up_Deleter> + template<typename _Tp, typename _Dp, + typename _Up, typename _Ep> inline bool - operator==(const unique_ptr<_Tp, _Tp_Deleter>& __x, - const unique_ptr<_Up, _Up_Deleter>& __y) + operator==(const unique_ptr<_Tp, _Dp>& __x, + const unique_ptr<_Up, _Ep>& __y) { return __x.get() == __y.get(); } - template<typename _Tp, typename _Tp_Deleter, - typename _Up, typename _Up_Deleter> + template<typename _Tp, typename _Dp, + typename _Up, typename _Ep> inline bool - operator!=(const unique_ptr<_Tp, _Tp_Deleter>& __x, - const unique_ptr<_Up, _Up_Deleter>& __y) + operator!=(const unique_ptr<_Tp, _Dp>& __x, + const unique_ptr<_Up, _Ep>& __y) { return !(__x.get() == __y.get()); } - template<typename _Tp, typename _Tp_Deleter, - typename _Up, typename _Up_Deleter> + template<typename _Tp, typename _Dp, + typename _Up, typename _Ep> inline bool - operator<(const unique_ptr<_Tp, _Tp_Deleter>& __x, - const unique_ptr<_Up, _Up_Deleter>& __y) + operator<(const unique_ptr<_Tp, _Dp>& __x, + const unique_ptr<_Up, _Ep>& __y) { return __x.get() < __y.get(); } - template<typename _Tp, typename _Tp_Deleter, - typename _Up, typename _Up_Deleter> + template<typename _Tp, typename _Dp, + typename _Up, typename _Ep> inline bool - operator<=(const unique_ptr<_Tp, _Tp_Deleter>& __x, - const unique_ptr<_Up, _Up_Deleter>& __y) + operator<=(const unique_ptr<_Tp, _Dp>& __x, + const unique_ptr<_Up, _Ep>& __y) { return !(__y.get() < __x.get()); } - template<typename _Tp, typename _Tp_Deleter, - typename _Up, typename _Up_Deleter> + template<typename _Tp, typename _Dp, + typename _Up, typename _Ep> inline bool - operator>(const unique_ptr<_Tp, _Tp_Deleter>& __x, - const unique_ptr<_Up, _Up_Deleter>& __y) + operator>(const unique_ptr<_Tp, _Dp>& __x, + const unique_ptr<_Up, _Ep>& __y) { return __y.get() < __x.get(); } - template<typename _Tp, typename _Tp_Deleter, - typename _Up, typename _Up_Deleter> + template<typename _Tp, typename _Dp, + typename _Up, typename _Ep> inline bool - operator>=(const unique_ptr<_Tp, _Tp_Deleter>& __x, - const unique_ptr<_Up, _Up_Deleter>& __y) + operator>=(const unique_ptr<_Tp, _Dp>& __x, + const unique_ptr<_Up, _Ep>& __y) { return !(__x.get() < __y.get()); } /// std::hash specialization for unique_ptr. - template<typename _Tp, typename _Tp_Deleter> - struct hash<unique_ptr<_Tp, _Tp_Deleter>> - : public std::unary_function<unique_ptr<_Tp, _Tp_Deleter>, size_t> + template<typename _Tp, typename _Dp> + struct hash<unique_ptr<_Tp, _Dp>> + : public std::unary_function<unique_ptr<_Tp, _Dp>, size_t> { size_t - operator()(const unique_ptr<_Tp, _Tp_Deleter>& __u) const + operator()(const unique_ptr<_Tp, _Dp>& __u) const { - typedef unique_ptr<_Tp, _Tp_Deleter> _UP; + typedef unique_ptr<_Tp, _Dp> _UP; return std::hash<typename _UP::pointer>()(__u.get()); } }; |