Removed unused variable

This commit is contained in:
Marc Gilleron 2019-08-24 01:44:51 +01:00
parent f14b374931
commit e815f79a5e

View File

@ -107,7 +107,6 @@ public:
_job_count = job_count;
CRASH_COND(batch_count == 0);
_batch_count = batch_count;
for (unsigned int i = 0; i < MAX_JOBS; ++i) {
JobData &job = _jobs[i];
@ -616,7 +615,6 @@ private:
JobData _jobs[MAX_JOBS];
unsigned int _job_count = 0;
unsigned int _batch_count = 0;
};
#endif // VOXEL_BLOCK_THREAD_MANAGER_H