]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdbsupport: remove unecessary template on iterator_range constructor
authorSimon Marchi <simon.marchi@polymtl.ca>
Sun, 31 Aug 2025 03:03:45 +0000 (23:03 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sun, 31 Aug 2025 03:04:26 +0000 (23:04 -0400)
This is a copy-pasto.

Change-Id: I947772f6a694b33e393762dbf2931ebe2031c1c5

gdbsupport/iterator-range.h

index a8cacfbddccd41da925eb5fadd4757acffe96f35..9653d40fad794c52596293717a132578055b52f0 100644 (file)
@@ -36,7 +36,6 @@ struct iterator_range
   {}
 
   /* Create an iterator range using explicit BEGIN and END iterators.  */
-  template <typename... Args>
   iterator_range (IteratorType begin, IteratorType end)
     : m_begin (std::move (begin)), m_end (std::move (end))
   {}