fix unsed-variable warning

This commit is contained in:
Nikolaus Demmel 2022-03-16 19:09:46 +01:00
parent a00d6289ac
commit a2c5071264
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,8 @@ struct SmoothFunction {
BASALT_HOST_DEVICE inline bool InBounds(
const Eigen::MatrixBase<Derived>& p,
const typename Derived::Scalar border) const {
UNUSED(p);
UNUSED(border);
return true;
}
};