From db10b7afde26af2d3afaef4b379739fc50d4287f Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 17 Feb 2022 15:55:56 +0000 Subject: [PATCH] ImageIO: Use CGAL_USE to avoid warning --- .../test/CGAL_ImageIO/test_trilinear_interpolation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CGAL_ImageIO/test/CGAL_ImageIO/test_trilinear_interpolation.cpp b/CGAL_ImageIO/test/CGAL_ImageIO/test_trilinear_interpolation.cpp index f4bdb80a1cb..818632ce0e5 100644 --- a/CGAL_ImageIO/test/CGAL_ImageIO/test_trilinear_interpolation.cpp +++ b/CGAL_ImageIO/test/CGAL_ImageIO/test_trilinear_interpolation.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include @@ -183,6 +184,7 @@ int main() { 0.f); } timer_old_implementation.stop(); + CGAL_USE(sum); } std::cerr << "max difference = " << max_diff << "\n" << "timer new implementation: " << timer_new_implementation.time() @@ -253,5 +255,3 @@ int main() { } std::cerr << counter << " tests. OK."; } - -