Skip to content

Commit

Permalink
fix wrong deleted constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Eisenwave committed Feb 10, 2021
1 parent 4394d0f commit 146f10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/voxelization.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Voxelizer {
public:
Voxelizer(ColorStrategy colorStrategy);

Voxelizer(const Voxelizer &&) = delete;
Voxelizer(const Voxelizer &) = delete;
Voxelizer(Voxelizer &&) = default;

void voxelize(const VisualTriangle &triangle, Vec3u32 min, Vec3u32 max);
Expand Down

0 comments on commit 146f10b

Please sign in to comment.