[gcc r12-3593] libstdc++: Remove non-deducible parameter for std::advance overload

Jonathan Wakely redi@gcc.gnu.org
Thu Sep 16 22:07:10 GMT 2021


https://gcc.gnu.org/g:21c760510d31253074577a14021fdc6ad44084b6

commit r12-3593-g21c760510d31253074577a14021fdc6ad44084b6
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Thu Sep 16 13:35:24 2021 +0100

    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.

Diff:
---
 libstdc++-v3/include/bits/fs_path.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libstdc++-v3/include/bits/fs_path.h b/libstdc++-v3/include/bits/fs_path.h
index 3151af1e901..235d1df748f 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)); }


More information about the Libstdc++-cvs mailing list