diff options
Diffstat (limited to 'libstdc++-v3/testsuite/25_algorithms/remove')
-rw-r--r-- | libstdc++-v3/testsuite/25_algorithms/remove/requirements/explicit_instantiation/pod.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/25_algorithms/remove/requirements/explicit_instantiation/pod.cc b/libstdc++-v3/testsuite/25_algorithms/remove/requirements/explicit_instantiation/pod.cc index 1bc1bcc4b77..ca538192dec 100644 --- a/libstdc++-v3/testsuite/25_algorithms/remove/requirements/explicit_instantiation/pod.cc +++ b/libstdc++-v3/testsuite/25_algorithms/remove/requirements/explicit_instantiation/pod.cc @@ -39,6 +39,5 @@ namespace std typedef pod_int value_type; typedef value_type* iterator_type; - template iterator_type remove(iterator_type, iterator_type, - const value_type&); + template iterator_type remove<iterator_type, value_type>(iterator_type, iterator_type, const value_type&); } |