remove special assignment operator in Consecutive (appeared to be unneccesary)

This commit is contained in:
Christian Zimmermann 2023-06-18 02:49:43 +02:00
parent 17b8b79ade
commit f088ba156b

View file

@ -13,13 +13,6 @@ namespace CNORXZ
struct Consecutive
{
T mD[N];
Consecutive& operator=(const Consecutive& a)
{
iter<0,N>([&](auto i) { mD[i] = a.mD[i]; VCHECK(mD[i]); }, NoF{} );
return *this;
}
Consecutive& operator=(Consecutive&& a) = delete;
};
template <typename T>