From: Carl Hetherington Date: Sat, 21 Oct 2023 12:02:07 +0000 (+0200) Subject: Cleanup: remove stray space. X-Git-Tag: v1.8.88~16 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=6c7e11d0f7e82b94539d5098f8730eaa60d5067b;p=libdcp.git Cleanup: remove stray space. --- 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: