From a2c50712646a6ed37d0ac83a5469886bab9b3803 Mon Sep 17 00:00:00 2001 From: Nikolaus Demmel Date: Wed, 16 Mar 2022 19:09:46 +0100 Subject: [PATCH] fix unsed-variable warning --- test/src/test_patch.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/src/test_patch.cpp b/test/src/test_patch.cpp index 6cedea2..42a0d28 100644 --- a/test/src/test_patch.cpp +++ b/test/src/test_patch.cpp @@ -26,6 +26,8 @@ struct SmoothFunction { BASALT_HOST_DEVICE inline bool InBounds( const Eigen::MatrixBase& p, const typename Derived::Scalar border) const { + UNUSED(p); + UNUSED(border); return true; } };