util/ForeignFifoBuffer: make Swap() lower case
This commit is contained in:
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);
|
||||
|
|
Loading…
Reference in New Issue