From 4a00a6edead9f35ebc5f538cefc35c778e2dbe49 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 23 Jun 2024 11:03:50 +1000 Subject: Fix trailing whitespaces --- src/string_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string_utils.cc') diff --git a/src/string_utils.cc b/src/string_utils.cc index 53d2d455..c614d485 100644 --- a/src/string_utils.cc +++ b/src/string_utils.cc @@ -202,7 +202,7 @@ InplaceString<23> to_string(Grouped val) InplaceString<23> res; for (int pos = 0, len = ungrouped.m_length; pos != len; ++pos) { - if (res.m_length and ((len - pos) % 3) == 0) + if (res.m_length and ((len - pos) % 3) == 0) res.m_data[res.m_length++] = ','; res.m_data[res.m_length++] = ungrouped.m_data[pos]; } -- cgit v1.2.3