Make beast::detail::chunk_encoded_buffers::to_hex() static

This commit is contained in:
Tom Ritchford
2014-12-01 11:12:59 -05:00
parent 3273ed2616
commit fffdf1dfba

View File

@@ -72,6 +72,7 @@ public:
private:
// Unchecked conversion of unsigned to hex string
template<class OutIter, class Unsigned>
static
std::enable_if_t<std::is_unsigned<Unsigned>::value, OutIter>
to_hex(OutIter const first, OutIter const last, Unsigned n);
};