From fffdf1dfbac790699ea20cd2ba9138e8e6bd2726 Mon Sep 17 00:00:00 2001 From: Tom Ritchford Date: Mon, 1 Dec 2014 11:12:59 -0500 Subject: [PATCH] Make beast::detail::chunk_encoded_buffers::to_hex() static --- src/beast/beast/http/chunk_encode.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/beast/beast/http/chunk_encode.h b/src/beast/beast/http/chunk_encode.h index 0f74cf900..2168bce7c 100644 --- a/src/beast/beast/http/chunk_encode.h +++ b/src/beast/beast/http/chunk_encode.h @@ -72,6 +72,7 @@ public: private: // Unchecked conversion of unsigned to hex string template + static std::enable_if_t::value, OutIter> to_hex(OutIter const first, OutIter const last, Unsigned n); };