From 1b048e147fa5cbf6bb11961fc319309c3a4ee484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=B6ssie?= Date: Thu, 15 Feb 2018 19:58:08 +0100 Subject: [PATCH] Fix wrong `RESTRICT` (#4397) --- rtengine/gauss.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/gauss.cc b/rtengine/gauss.cc index 78275da9f..972021336 100644 --- a/rtengine/gauss.cc +++ b/rtengine/gauss.cc @@ -758,7 +758,7 @@ template void gaussVerticalSsemult (T** RESTRICT src, T** RESTRICT dst, } } -template void gaussVerticalSsediv (T** RESTRICT src, T** RESTRICT dst, T** divBuffer, const int W, const int H, const float sigma) +template void gaussVerticalSsediv (T** src, T** dst, T** divBuffer, const int W, const int H, const float sigma) { double b1, b2, b3, B, M[3][3]; calculateYvVFactors(sigma, b1, b2, b3, B, M);