summaryrefslogtreecommitdiff
path: root/tests/test_accum_iter.cc
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-03 12:55:50 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-03-07 10:47:04 +0100
commitef522ec88f385c45b2aca611602ce0ea5fcfc72d (patch)
tree6f8f92d2589db028dd19129b154913131ac36149 /tests/test_accum_iter.cc
parent2ecfd53a9d5dc0c5c8c1ce235a9de4c379583856 (diff)
downloadsigc++-ef522ec88f385c45b2aca611602ce0ea5fcfc72d.tar.gz
Remove use of removed SIGC_HAVE_SUN_REVERSE_ITERATOR
Diffstat (limited to 'tests/test_accum_iter.cc')
-rw-r--r--tests/test_accum_iter.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_accum_iter.cc b/tests/test_accum_iter.cc
index b5947ec..640d39a 100644
--- a/tests/test_accum_iter.cc
+++ b/tests/test_accum_iter.cc
@@ -20,11 +20,7 @@ struct min_accum
typedef T result_type;
template<class I>
-#ifndef SIGC_HAVE_SUN_REVERSE_ITERATOR
typename std::iterator_traits<I>::value_type operator()(I i1, I i2)
-#else
- typename I::value_type operator()(I i1, I i2)
-#endif
{
return *std::min_element(i1, i2);
}