iterator/infix: use a more descriptive tparam name

This commit is contained in:
Danny Robson 2019-06-20 16:30:52 +10:00
parent 3b24e6b7e7
commit b44fda51a3

View File

@ -23,7 +23,7 @@ namespace cruft::iterator {
/// cruft::infix_iterator<value_type> (os, ", ")
/// );
template <
typename T,
typename ValueT,
class CharT = char,
class Traits = std::char_traits<CharT>
>
@ -38,8 +38,9 @@ namespace cruft::iterator {
m_delimiter (_delimiter)
{ ; }
infix_iterator&
operator= (T const &value)
operator= (ValueT const &value)
{
if (!m_first)
m_output << m_delimiter;
@ -54,6 +55,7 @@ namespace cruft::iterator {
infix_iterator& operator++ (void) { return *this; }
infix_iterator& operator++ (int) { return *this; }
private:
bool m_first = true;
ostream_type &m_output;