From 49beb84ef9c8fa3edb866325b5085e4e5116e299 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 4 Oct 2020 01:18:44 +0100 Subject: [PATCH] wip bigfloat Signed-off-by: Ian Jackson --- templates/bigfloat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/bigfloat.ts b/templates/bigfloat.ts index d7a07220..4c8b5dea 100644 --- a/templates/bigfloat.ts +++ b/templates/bigfloat.ts @@ -64,7 +64,7 @@ class Bigfloat { // to produce values > this, < endv let e_out = Math.max(this.exponent, endv.exponent); for (let e = e_out; - e; + ; e--) { let it = e - this.exponent; let ie = e - endv.exponent; -- 2.30.2