diff --git a/rtengine/rt_math.h b/rtengine/rt_math.h index dbf54ace5..a1dc11d44 100644 --- a/rtengine/rt_math.h +++ b/rtengine/rt_math.h @@ -138,8 +138,6 @@ constexpr std::uint8_t uint16ToUint8Rounded(std::uint16_t i) return ((i + 128) - ((i + 128) >> 8)) >> 8; } -} - template bool invertMatrix(const std::array, 3> &in, std::array, 3> &out) @@ -201,3 +199,6 @@ std::array dotProduct(const std::array, 3> &a, const std: return res; } + +} +