Added missing 'return *this'

This commit is contained in:
John Wellbelove 2015-12-04 10:54:30 +00:00
parent aa2fcf7d42
commit 7645b14072

View File

@ -73,6 +73,7 @@ namespace etl
iterator& operator =(const iterator& other)
{
p_iop = other.p_iop;
return *this;
}
iop_t& operator *()