mirror of
https://github.com/fmtlib/fmt.git
synced 2025-11-28 13:19:48 +01:00
use gcc-10.2 instead of gcc-10.1 on CI, also fix one problem (#2110)
the problem was not detected by test because of wrong gcc-10 minor version on CI
This commit is contained in:
@@ -1697,7 +1697,7 @@ template <typename OutputIt, typename Char, typename UInt> struct int_writer {
|
||||
return string_view(prefix, prefix_size);
|
||||
}
|
||||
|
||||
void write_dec() {
|
||||
FMT_CONSTEXPR void write_dec() {
|
||||
auto num_digits = count_digits(abs_value);
|
||||
out = write_int(
|
||||
out, num_digits, get_prefix(), specs, [this, num_digits](iterator it) {
|
||||
|
||||
Reference in New Issue
Block a user