[Vulkan UI] Try to fix Travis again :/

This commit is contained in:
DrChat 2018-03-03 00:01:23 -06:00
parent c8698f912f
commit 3a0903672c
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_.swap(std::queue<Allocation>());
allocations_ = {};
write_head_ = read_head_ = 0;
}