BLI: fix illegal zero sized array

This commit is contained in:
Jacques Lucke 2019-09-12 18:46:15 +02:00
parent 852c727073
commit 3062f341b3
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
namespace BLI {
static Vector<Array<uint, RawAllocator>, 0, RawAllocator> arrays;
static Vector<Array<uint, RawAllocator>, 1, RawAllocator> arrays;
static uint current_array_size = 0;
static uint *current_array = nullptr;
static std::mutex current_array_mutex;