From 3ab9d4a50c4c2fe92904f6de82645eb49cdc48ba Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Tue, 4 Jan 2022 20:09:08 +0000 Subject: [PATCH] Fix warning about unused variable --- storage/voxel_data_block.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/voxel_data_block.h b/storage/voxel_data_block.h index 7f38d329..7d3514f3 100644 --- a/storage/voxel_data_block.h +++ b/storage/voxel_data_block.h @@ -82,7 +82,7 @@ private: // Tells if it's worth requesting a more precise version of the data. // Will be `true` if it's not worth it. - bool _max_lod_hint = false; + //bool _max_lod_hint = false; }; #endif // VOXEL_DATA_BLOCK_H