Fix a warning about long long.

This commit is contained in:
Victor Zverovich
2013-12-06 07:12:38 -08:00
parent 39cc99e2c2
commit f406a42baa
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -519,7 +519,7 @@ void fmt::BasicFormatter<Char>::DoFormat() {
++s;
++num_open_braces_;
const Arg &precision_arg = ParseArgIndex(s);
unsigned long long value = 0;
ULongLong value = 0;
switch (precision_arg.type) {
case INT:
if (precision_arg.int_value < 0)