]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/26_numerics/partial_sum/requirements/explicit_instantiation/pod.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / partial_sum / requirements / explicit_instantiation / pod.cc
index 76617f4ed20042c37f811a10148c3259232d866a..e480c70dfa6ec172b381d83f323252cacb407f6c 100644 (file)
@@ -2,7 +2,7 @@
 
 // 2007-09-20 Benjamin Kosnik <bkoz@redhat.com>
 
-// Copyright (C) 2007-2013 Free Software Foundation, Inc.
+// Copyright (C) 2007-2020 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -28,8 +28,9 @@ namespace std
   using __gnu_test::pod_int;
 
   typedef pod_int              value_type;
-  typedef value_type*          input_iterator;
-  typedef value_type*          output_iterator;
+  typedef value_type*          input_iterator_type;
+  typedef value_type*          output_iterator_type;
 
-  template output_iterator partial_sum(input_iterator, input_iterator, output_iterator);
+  template output_iterator_type
+  partial_sum(input_iterator_type, input_iterator_type, output_iterator_type);
 }