mirror of
https://github.com/boostorg/unordered.git
synced 2025-10-06 04:31:09 +02:00
Stop using BOOST_DEDUCED_TYPENAME
We no longer support any of the compilers that require it. I'd be very surprised if anything was working on them.
This commit is contained in:
@@ -172,9 +172,9 @@ template <class T> struct input_range_construct_test : public range<T>, objects
|
||||
|
||||
void run() const
|
||||
{
|
||||
BOOST_DEDUCED_TYPENAME test::random_values<T>::const_iterator
|
||||
begin = this->values.begin(),
|
||||
end = this->values.end();
|
||||
typename test::random_values<T>::const_iterator begin =
|
||||
this->values.begin(),
|
||||
end = this->values.end();
|
||||
T x(test::input_iterator(begin), test::input_iterator(end), 0, hash,
|
||||
equal_to, allocator);
|
||||
|
||||
|
Reference in New Issue
Block a user