summaryrefslogtreecommitdiff
path: root/tests/test_accum_iter.cc
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-04 10:26:45 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-03-07 10:47:04 +0100
commit2bc704c5a6c537166b2eb3ddb3a88196e3c2843f (patch)
treef38a6b686f1acec24f6ace82b6e1683e660cdb36 /tests/test_accum_iter.cc
parent578e3b5c90051cbf818ddd9cf244996a48fd996f (diff)
downloadsigc++-2bc704c5a6c537166b2eb3ddb3a88196e3c2843f.tar.gz
C++11: Change all typedefs to using.
Diffstat (limited to 'tests/test_accum_iter.cc')
-rw-r--r--tests/test_accum_iter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_accum_iter.cc b/tests/test_accum_iter.cc
index 640d39a..909a466 100644
--- a/tests/test_accum_iter.cc
+++ b/tests/test_accum_iter.cc
@@ -17,7 +17,7 @@ int ident(int i)
template<typename T>
struct min_accum
{
- typedef T result_type;
+ using result_type = T;
template<class I>
typename std::iterator_traits<I>::value_type operator()(I i1, I i2)