From d7aa4fa7d3828dbacbab1c9638e10858e3e36bd7 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 16 Aug 2019 09:57:47 +0200 Subject: [PATCH] util/ForeignFifoBuffer: make Swap() lower case --- src/util/ForeignFifoBuffer.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/ForeignFifoBuffer.hxx b/src/util/ForeignFifoBuffer.hxx index ba09db570..75fbad82e 100644 --- a/src/util/ForeignFifoBuffer.hxx +++ b/src/util/ForeignFifoBuffer.hxx @@ -82,7 +82,7 @@ public: return *this; } - void Swap(ForeignFifoBuffer &other) noexcept { + void swap(ForeignFifoBuffer &other) noexcept { using std::swap; swap(head, other.head); swap(tail, other.tail);