From 08bc50beff6d77b7f663e57632b5a33e167d0905 Mon Sep 17 00:00:00 2001 From: koide3 <31344317+koide3@users.noreply.github.com> Date: Wed, 7 May 2025 14:51:07 +0900 Subject: [PATCH] fix typo (#115) --- include/small_gicp/ann/sequential_voxelmap_accessor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/small_gicp/ann/sequential_voxelmap_accessor.hpp b/include/small_gicp/ann/sequential_voxelmap_accessor.hpp index ced2612..d3346ea 100644 --- a/include/small_gicp/ann/sequential_voxelmap_accessor.hpp +++ b/include/small_gicp/ann/sequential_voxelmap_accessor.hpp @@ -46,7 +46,7 @@ template struct traits::Traits> { static size_t size(const SequentialVoxelMapAccessor& accessor) { return accessor.size(); } - static bool has_points(const SequentialVoxelMapAccessor& accessor) { traits::has_points(accessor.voxelmap); } + static bool has_points(const SequentialVoxelMapAccessor& accessor) { return traits::has_points(accessor.voxelmap); } static bool has_normals(const SequentialVoxelMapAccessor& accessor) { return traits::has_normals(accessor.voxelmap); } static bool has_covs(const SequentialVoxelMapAccessor& accessor) { return traits::has_covs(accessor.voxelmap); }