[Vulkan UI] Travis, why?

This commit is contained in:
DrChat 2018-03-03 10:09:16 -06:00
parent 3a0903672c
commit 7c5c389ce8
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ void CircularBuffer::Flush(VkDeviceSize offset, VkDeviceSize length) {
}
void CircularBuffer::Clear() {
allocations_ = {};
allocations_ = std::queue<Allocation>{};
write_head_ = read_head_ = 0;
}