[Vulkan UI] Fix Travis

This commit is contained in:
DrChat 2018-03-02 22:35:29 -06:00
parent 2180280c8e
commit 6c67fe4b29
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() {
std::swap(allocations_, std::queue<Allocation>());
allocations_.swap(std::queue<Allocation>());
write_head_ = read_head_ = 0;
}