From afe54548a0dcbdbbbc37aab89e63915e8f33b8cb Mon Sep 17 00:00:00 2001 From: chatlanin Date: Mon, 16 Mar 2026 16:32:29 +0300 Subject: [PATCH] fix size func --- src/utils/workers/result.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/workers/result.hpp b/src/utils/workers/result.hpp index e986390..c5d3803 100644 --- a/src/utils/workers/result.hpp +++ b/src/utils/workers/result.hpp @@ -36,7 +36,7 @@ namespace hr std::size_t size() { - if (!empty()) return m_data.at(0).m_value.size(); + if (!empty()) return m_data.size(); else return 0; }