From 8b2d56b0a9db8b548ac4a80876d4e4bf16ca71c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arthur=20Crippa=20B=C3=BArigo?= Date: Mon, 1 Aug 2022 13:58:44 -0300 Subject: [PATCH] Add include guards to pointpillar.h. --- include/pointpillar.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/pointpillar.h b/include/pointpillar.h index 3537154..9a19146 100644 --- a/include/pointpillar.h +++ b/include/pointpillar.h @@ -14,6 +14,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +#ifndef _POINTPILLAR_H_ +#define _POINTPILLAR_H_ #include #include "cuda_runtime.h" @@ -102,4 +104,4 @@ class PointPillar { ~PointPillar(void); int doinfer(void*points, unsigned int point_size, std::vector &res); }; - +#endif // _POINTPILLAR_H_