aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2021-09-16 13:35:24 +0100
committerJonathan Wakely <jwakely@redhat.com>2021-09-16 23:06:37 +0100
commit21c760510d31253074577a14021fdc6ad44084b6 (patch)
treed8ab95abe210a6f091c6ab8dc15ece94f8cb45c7
parent734b2c2eedca50d966e22540fc136158c3633393 (diff)
downloadgcc-21c760510d31253074577a14021fdc6ad44084b6.zip
gcc-21c760510d31253074577a14021fdc6ad44084b6.tar.gz
gcc-21c760510d31253074577a14021fdc6ad44084b6.tar.bz2
libstdc++: Remove non-deducible parameter for std::advance overload
This was just a copy and paste error. Signed-off-by: Jonathan Wakely <jwakely@redhat.com> libstdc++-v3/ChangeLog: * include/bits/fs_path.h (advance): Remove non-deducible template parameter.
-rw-r--r--libstdc++-v3/include/bits/fs_path.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/fs_path.h b/libstdc++-v3/include/bits/fs_path.h
index 3151af1..235d1df 100644
--- a/libstdc++-v3/include/bits/fs_path.h
+++ b/libstdc++-v3/include/bits/fs_path.h
@@ -1357,7 +1357,7 @@ inline ptrdiff_t
distance(filesystem::path::iterator __first, filesystem::path::iterator __last)
{ return __path_iter_distance(__first, __last); }
-template<typename _InputIterator, typename _Distance>
+template<typename _Distance>
void
advance(filesystem::path::iterator& __i, _Distance __n)
{ __path_iter_advance(__i, static_cast<ptrdiff_t>(__n)); }