Commit f4de7b68 authored by Victor Zverovich's avatar Victor Zverovich

Fix ambiguity

parent 1f8f5450
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment