From 9a45caab02bb1fa426dda0b1ed584a8cbb27d27d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 30 Aug 2025 21:47:55 +0200 Subject: feat: debugger_kit: debugger contract modifications for NeKernel. Signed-off-by: Amlal El Mahrouss --- dev/LibC++/base_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/LibC++') diff --git a/dev/LibC++/base_math.h b/dev/LibC++/base_math.h index cf4313f..7c9f34d 100644 --- a/dev/LibC++/base_math.h +++ b/dev/LibC++/base_math.h @@ -57,7 +57,7 @@ template inline real_type surd(real_type in) { if (in == 0) return 0; if (in == 1) return 1; - + if (Base == 1) return in; if (Base == 2) return sqrt(in); -- cgit v1.2.3