From: Simon Marchi Date: Sun, 31 Aug 2025 03:03:45 +0000 (-0400) Subject: gdbsupport: remove unecessary template on iterator_range constructor X-Git-Tag: gdb-17-branchpoint~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=125bb0a7bff9c85cc3c765e2e9fe8ee583c5df22;p=thirdparty%2Fbinutils-gdb.git gdbsupport: remove unecessary template on iterator_range constructor This is a copy-pasto. Change-Id: I947772f6a694b33e393762dbf2931ebe2031c1c5 --- diff --git a/gdbsupport/iterator-range.h b/gdbsupport/iterator-range.h index a8cacfbddcc..9653d40fad7 100644 --- a/gdbsupport/iterator-range.h +++ b/gdbsupport/iterator-range.h @@ -36,7 +36,6 @@ struct iterator_range {} /* Create an iterator range using explicit BEGIN and END iterators. */ - template iterator_range (IteratorType begin, IteratorType end) : m_begin (std::move (begin)), m_end (std::move (end)) {}