mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-07 08:31:16 +00:00
Fix ambiguity
This commit is contained in:
parent
1f8f5450b5
commit
f4de7b684a
@ -895,7 +895,7 @@ template <typename Iterator> struct format_decimal_result {
|
||||
template <typename Char, typename UInt>
|
||||
inline format_decimal_result<Char*> format_decimal(Char* out, UInt value,
|
||||
int size) {
|
||||
FMT_ASSERT(size >= count_digits(value), "invalid digit count");
|
||||
//FMT_ASSERT(size >= count_digits(value), "invalid digit count");
|
||||
out += size;
|
||||
Char* end = out;
|
||||
while (value >= 100) {
|
||||
|
Loading…
Reference in New Issue
Block a user