From f2c139616a39a8ea9f8f6be71480a9ee5ead1060 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD?= Date: Thu, 12 Jun 2025 11:26:51 +0300 Subject: [PATCH] =?UTF-8?q?TASK00=20-=20=D0=BA=D0=BE=D1=81=D0=BC=D0=B5?= =?UTF-8?q?=D1=82=D0=B8=D1=87=D0=B5=D1=81=D0=BA=D0=B0=D1=8F=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/helpers/helpers.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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);