Fix something that prevented GCC from compiling

This commit is contained in:
Marc Gilleron 2020-01-06 20:08:51 +00:00
parent dacd18b772
commit b1c38a40c0

View File

@ -11,7 +11,7 @@ class VoxelMesher : public Reference {
public: public:
struct Input { struct Input {
const VoxelBuffer &voxels; const VoxelBuffer &voxels;
int lod = 0; int lod; // = 0; // Not initialized because it confused GCC
}; };
struct Output { struct Output {