From df4ec096491ded6d58b9ee094d6942e3188c2d4a Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 23 Nov 2025 17:26:48 +0100 Subject: fix: lib: `visit` may now throw exceptions. Signed-off-by: Amlal El Mahrouss --- dev/lib/core/chunk_string.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/lib/core') diff --git a/dev/lib/core/chunk_string.hpp b/dev/lib/core/chunk_string.hpp index 0ecc73e..e32d030 100644 --- a/dev/lib/core/chunk_string.hpp +++ b/dev/lib/core/chunk_string.hpp @@ -94,7 +94,7 @@ namespace ocl std::basic_string str() const noexcept { static std::basic_string ret; - const auto& sz = ret.size(); + const auto& sz = ret.size(); if (chunk_total_ > sz) ret.clear(); -- cgit v1.2.3