From 3ae77a4e2c39535e64ff73e5827d1a286061c8e6 Mon Sep 17 00:00:00 2001 From: "Timur A. Fatkhullin" Date: Wed, 1 Jul 2026 12:10:54 +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 3f3a0a2..c90ffe7 100644 --- a/include/snipplib/utils/snplib_string.h +++ b/include/snipplib/utils/snplib_string.h @@ -16,7 +16,7 @@ constexpr static bool snplib_is_space(char in) noexcept }; -enum class TrimType { TRIM_LEFT = 0b1, TRIM_RIGHT = 0b10, TRIM_BOTH = 0b11 }; +enum class TrimType { TRIM_RIGHT = 0b01, TRIM_LEFT = 0b10, TRIM_BOTH = 0b11 }; template constexpr static OR snplib_trim_spaces(R&& r,