small code formatting

This commit is contained in:
Jin S 2023-12-10 23:27:58 -05:00
parent d1ac2bb26d
commit 4d2ecf967c

View File

@ -794,13 +794,13 @@ inline auto code_point_index(string_view s, size_t n) -> size_t {
size_t result = s.size(); size_t result = s.size();
const char* begin = s.begin(); const char* begin = s.begin();
for_each_codepoint(s, [begin, &n, &result](uint32_t, string_view sv) { for_each_codepoint(s, [begin, &n, &result](uint32_t, string_view sv) {
if (n != 0) { if (n != 0) {
--n; --n;
return true; return true;
} }
result = to_unsigned(sv.begin() - begin); result = to_unsigned(sv.begin() - begin);
return false; return false;
}); });
return result; return result;
} }
@ -2124,8 +2124,8 @@ auto write_int(OutputIt out, UInt value, unsigned prefix,
const format_specs<Char>& specs, const format_specs<Char>& specs,
const digit_grouping<Char>& grouping) -> OutputIt { const digit_grouping<Char>& grouping) -> OutputIt {
static_assert(std::is_same<uint64_or_128_t<UInt>, UInt>::value, ""); static_assert(std::is_same<uint64_or_128_t<UInt>, UInt>::value, "");
char digits[40];
int num_digits; int num_digits;
char digits[40];
switch (specs.type) { switch (specs.type) {
case presentation_type::none: case presentation_type::none: