mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02:00
Remove unnecessary BOOST_DEDUCED_TYPENAMEs
[SVN r55902]
This commit is contained in:
@ -68,8 +68,8 @@ namespace boost
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::reference reference;
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::const_reference const_reference;
|
||||
|
||||
typedef BOOST_DEDUCED_TYPENAME std::size_t size_type;
|
||||
typedef BOOST_DEDUCED_TYPENAME std::ptrdiff_t difference_type;
|
||||
typedef std::size_t size_type;
|
||||
typedef std::ptrdiff_t difference_type;
|
||||
|
||||
typedef boost::unordered_detail::hash_const_local_iterator<
|
||||
value_allocator, boost::unordered_detail::ungrouped> const_local_iterator;
|
||||
@ -545,8 +545,8 @@ namespace boost
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::reference reference;
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::const_reference const_reference;
|
||||
|
||||
typedef BOOST_DEDUCED_TYPENAME std::size_t size_type;
|
||||
typedef BOOST_DEDUCED_TYPENAME std::ptrdiff_t difference_type;
|
||||
typedef std::size_t size_type;
|
||||
typedef std::ptrdiff_t difference_type;
|
||||
|
||||
typedef boost::unordered_detail::hash_const_local_iterator<
|
||||
value_allocator, boost::unordered_detail::grouped> const_local_iterator;
|
||||
|
@ -67,8 +67,8 @@ namespace boost
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::reference reference;
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::const_reference const_reference;
|
||||
|
||||
typedef BOOST_DEDUCED_TYPENAME std::size_t size_type;
|
||||
typedef BOOST_DEDUCED_TYPENAME std::ptrdiff_t difference_type;
|
||||
typedef std::size_t size_type;
|
||||
typedef std::ptrdiff_t difference_type;
|
||||
|
||||
typedef boost::unordered_detail::hash_const_local_iterator<
|
||||
value_allocator, boost::unordered_detail::ungrouped> const_local_iterator;
|
||||
@ -513,8 +513,8 @@ namespace boost
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::reference reference;
|
||||
typedef BOOST_DEDUCED_TYPENAME value_allocator::const_reference const_reference;
|
||||
|
||||
typedef BOOST_DEDUCED_TYPENAME std::size_t size_type;
|
||||
typedef BOOST_DEDUCED_TYPENAME std::ptrdiff_t difference_type;
|
||||
typedef std::size_t size_type;
|
||||
typedef std::ptrdiff_t difference_type;
|
||||
|
||||
typedef boost::unordered_detail::hash_const_local_iterator<
|
||||
value_allocator, boost::unordered_detail::grouped> const_local_iterator;
|
||||
|
Reference in New Issue
Block a user