mirror of https://github.com/koide3/small_gicp.git
fix typo (#115)
This commit is contained in:
parent
9befefb198
commit
08bc50beff
|
|
@ -46,7 +46,7 @@ template <typename VoxelMap>
|
|||
struct traits::Traits<SequentialVoxelMapAccessor<VoxelMap>> {
|
||||
static size_t size(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return accessor.size(); }
|
||||
|
||||
static bool has_points(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { traits::has_points(accessor.voxelmap); }
|
||||
static bool has_points(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return traits::has_points(accessor.voxelmap); }
|
||||
static bool has_normals(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return traits::has_normals(accessor.voxelmap); }
|
||||
static bool has_covs(const SequentialVoxelMapAccessor<VoxelMap>& accessor) { return traits::has_covs(accessor.voxelmap); }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue