Skip to content

Commit 08bc50b

Browse files
authored
fix typo (#115)
1 parent 9befefb commit 08bc50b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/small_gicp/ann/sequential_voxelmap_accessor.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ template <typename VoxelMap>
4646
struct traits::Traits<SequentialVoxelMapAccessor<VoxelMap>> {
4747
static size_t size(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return accessor.size(); }
4848

49-
static bool has_points(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { traits::has_points(accessor.voxelmap); }
49+
static bool has_points(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return traits::has_points(accessor.voxelmap); }
5050
static bool has_normals(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return traits::has_normals(accessor.voxelmap); }
5151
static bool has_covs(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return traits::has_covs(accessor.voxelmap); }
5252

0 commit comments

Comments
 (0)