From 29b76b3d22aa626441dc322f88193fc8c1db5508 Mon Sep 17 00:00:00 2001 From: Markus Vieth Date: Sat, 21 Dec 2024 17:33:52 +0100 Subject: [PATCH] Add missing include for implementation header in bilateral_upsampling.h Otherwise, this leads to problems while building the tools, if PCL_NO_PRECOMPILE is enabled --- surface/include/pcl/surface/bilateral_upsampling.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/surface/include/pcl/surface/bilateral_upsampling.h b/surface/include/pcl/surface/bilateral_upsampling.h index 1be6fc85777..97e2c091920 100644 --- a/surface/include/pcl/surface/bilateral_upsampling.h +++ b/surface/include/pcl/surface/bilateral_upsampling.h @@ -153,3 +153,6 @@ namespace pcl PCL_MAKE_ALIGNED_OPERATOR_NEW }; } +#ifdef PCL_NO_PRECOMPILE +#include +#endif