public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r9-9779] libstdc++: Remove non-deducible parameter for std::advance overload
@ 2021-10-13 19:42 Jonathan Wakely
  0 siblings, 0 replies; only message in thread
From: Jonathan Wakely @ 2021-10-13 19:42 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:2229841816dfdea6fed1547a9a27f636f8ee59e7

commit r9-9779-g2229841816dfdea6fed1547a9a27f636f8ee59e7
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.
    
    (cherry picked from commit 21c760510d31253074577a14021fdc6ad44084b6)

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 8b801c6787c..f4fa9f3719d 100644
--- a/libstdc++-v3/include/bits/fs_path.h
+++ b/libstdc++-v3/include/bits/fs_path.h
@@ -1274,7 +1274,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)); }


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-13 19:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-13 19:42 [gcc r9-9779] libstdc++: Remove non-deducible parameter for std::advance overload Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).