From 6c7e11d0f7e82b94539d5098f8730eaa60d5067b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 21 Oct 2023 14:02:07 +0200 Subject: [PATCH] Cleanup: remove stray space. --- src/piecewise_lut.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/piecewise_lut.h b/src/piecewise_lut.h index ba8f5c13..772e0aed 100644 --- a/src/piecewise_lut.h +++ b/src/piecewise_lut.h @@ -58,7 +58,7 @@ public: } inline double lookup(double x) const { - return x < _boundary ? _low[lrint((x / _boundary) * _low_scale)] : _high[lrint(((x - _boundary) / (1 - _boundary)) * _high_scale)]; + return x < _boundary ? _low[lrint((x / _boundary) * _low_scale)] : _high[lrint(((x - _boundary) / (1 - _boundary)) * _high_scale)]; } private: -- 2.30.2