Remove use of iterator_adaptor in unordered tests.

[SVN r58144]
This commit is contained in:
Daniel James
2009-12-04 19:44:34 +00:00
parent c8b893cb77
commit 18a5010436
5 changed files with 49 additions and 20 deletions

View File

@@ -126,8 +126,9 @@ struct input_range_construct_test : public range<T>, objects
input_range_construct_test() : range<T>(60) {}
void run() const {
T x(test::input_iterator(this->values.begin()),
test::input_iterator(this->values.end()),
BOOST_DEDUCED_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);
}
};