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
1 changed files with 1 additions and 1 deletions

View File

@ -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);