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
|
||||
{
|
||||
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>
|
||||
|
|
Loading…
Reference in a new issue