From 4c7ea58f5d5e495e8da6cfc7e1d52a3dfcf5a893 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 7 Dec 2024 18:07:22 +0100 Subject: IMPL: New I/O functions from assembly, still working on #8 issue. Signed-off-by: Amlal El Mahrouss --- dev/ZKAKit/NewKit/Array.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'dev/ZKAKit/NewKit/Array.h') diff --git a/dev/ZKAKit/NewKit/Array.h b/dev/ZKAKit/NewKit/Array.h index b91e5444..ebdd1016 100644 --- a/dev/ZKAKit/NewKit/Array.h +++ b/dev/ZKAKit/NewKit/Array.h @@ -24,11 +24,10 @@ namespace Kernel T& operator[](const SizeT& At) { - MUST_PASS(At < N); return fArray[At]; } - T& Assign(const SizeT& At, T& NewVal) + T Assign(const SizeT& At, T NewVal) { fArray[At] = NewVal; return fArray[At]; -- cgit v1.2.3