correction for LUT += operator, fixes #3245

This commit is contained in:
heckflosse 2016-04-08 12:46:08 +02:00
parent f64e3deea4
commit 86d7d9063f

View File

@ -266,6 +266,7 @@ public:
data[i] += rhs.data[i]; data[i] += rhs.data[i];
} }
} }
return *this;
} }
// use with integer indices // use with integer indices