Commit d7aa4fa7 authored by Max Kellermann's avatar Max Kellermann Committed by Max Kellermann

util/ForeignFifoBuffer: make Swap() lower case

parent 57c56031
...@@ -82,7 +82,7 @@ public: ...@@ -82,7 +82,7 @@ public:
return *this; return *this;
} }
void Swap(ForeignFifoBuffer<T> &other) noexcept { void swap(ForeignFifoBuffer<T> &other) noexcept {
using std::swap; using std::swap;
swap(head, other.head); swap(head, other.head);
swap(tail, other.tail); swap(tail, other.tail);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment