From 4bbf16cffb088ada7056c8dbce6b18c7f07b1426 Mon Sep 17 00:00:00 2001 From: "Timur A. Fatkhullin" Date: Tue, 30 Jun 2026 14:40:27 +0300 Subject: [PATCH] ... --- include/snipplib/utils/snplib_string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/snipplib/utils/snplib_string.h b/include/snipplib/utils/snplib_string.h index 552034c..8140a41 100644 --- a/include/snipplib/utils/snplib_string.h +++ b/include/snipplib/utils/snplib_string.h @@ -11,7 +11,7 @@ namespace snplib constexpr static bool snplib_is_space(char in) noexcept { - static constexpr auto ws = {' ', '\t', '\n', '\v', '\r', '\f'}; + static constexpr std::array ws = {' ', '\t', '\n', '\v', '\r', '\f'}; return std::ranges::any_of(ws, [in](auto p) { return p == in; }); };