From f088ba156bf86a4b54de81c4961562b42fde2889 Mon Sep 17 00:00:00 2001 From: Christian Zimmermann Date: Sun, 18 Jun 2023 02:49:43 +0200 Subject: [PATCH] remove special assignment operator in Consecutive (appeared to be unneccesary) --- src/include/operation/extensions/reg.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/include/operation/extensions/reg.h b/src/include/operation/extensions/reg.h index 2421301..f03b848 100644 --- a/src/include/operation/extensions/reg.h +++ b/src/include/operation/extensions/reg.h @@ -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