[core] nits

Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
This commit is contained in:
x7z4w
2025-08-21 13:56:48 +00:00
committed by Konstantin Pastbin
parent 3f7815017e
commit 3c34765595
5 changed files with 19 additions and 11 deletions

View File

@@ -8,7 +8,6 @@
#include <cmath>
#include <cstddef>
#include <iomanip>
#include <iterator>
#include <fast_double_parser.h>
#include <boost/algorithm/string/trim.hpp>
@@ -345,7 +344,7 @@ std::u16string ToUtf16(std::string_view utf8)
bool IsASCIIString(std::string_view sv)
{
for (auto c : sv)
for (auto const c : sv)
if (c & 0x80)
return false;
return true;