util/ForeignFifoBuffer: make Swap() lower case

This commit is contained in:
Max Kellermann
2019-08-16 09:57:47 +02:00
committed by Max Kellermann
parent 57c5603122
commit d7aa4fa7d3

@ -82,7 +82,7 @@ public:
return *this;
}
void Swap(ForeignFifoBuffer<T> &other) noexcept {
void swap(ForeignFifoBuffer<T> &other) noexcept {
using std::swap;
swap(head, other.head);
swap(tail, other.tail);