From aecbc2cf2411c7a2258c394a9962ee477bfca149 Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Fri, 23 Mar 2018 14:37:57 +0100 Subject: [PATCH] fixed compilation problem --- rtengine/rt_math.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } + +} +