From d651d1abfdd65dd803d6aaf14e9c10a512eadfc0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 22 May 2019 10:43:05 +0200 Subject: [PATCH] util/SparseBuffer: move #endif to the bottom --- src/util/SparseBuffer.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/SparseBuffer.hxx b/src/util/SparseBuffer.hxx index 720e363cf..d051c53e7 100644 --- a/src/util/SparseBuffer.hxx +++ b/src/util/SparseBuffer.hxx @@ -90,8 +90,6 @@ private: Iterator CheckCollapseNext(Iterator i) noexcept; }; -#endif - /** * A buffer which caches the contents of a "huge" array, and remembers * which chunks are available. @@ -139,3 +137,5 @@ public: map.Commit(start_offset, end_offset); } }; + +#endif