remove special assignment operator in Consecutive (appeared to be unneccesary)
This commit is contained in:
parent
17b8b79ade
commit
f088ba156b
1 changed files with 0 additions and 7 deletions
|
@ -13,13 +13,6 @@ namespace CNORXZ
|
||||||
struct Consecutive
|
struct Consecutive
|
||||||
{
|
{
|
||||||
T mD[N];
|
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>
|
template <typename T>
|
||||||
|
|
Loading…
Reference in a new issue