diff --git a/src/helpers/helpers.cpp b/src/helpers/helpers.cpp index 8562faf..760af39 100644 --- a/src/helpers/helpers.cpp +++ b/src/helpers/helpers.cpp @@ -97,8 +97,7 @@ void Fail(boost::beast::error_code ec, char const* what) std::string ToHex(std::byte* src, size_t len) { - if (!src || !len) - return ""; + if (!src || !len) return ""; string ret; ret.reserve(len * 2);