Fix handling of octal prefix.

This commit is contained in:
Victor Zverovich 2014-06-20 08:04:44 -07:00
parent 512ab9336b
commit ca31c2b322
2 changed files with 3 additions and 2 deletions

View File

@ -1313,8 +1313,8 @@ typename fmt::BasicWriter<Char>::CharPtr
if (spec.precision() > static_cast<int>(num_digits)) {
// Octal prefix '0' is counted as a digit, so ignore it if precision
// is specified.
if (prefix_size == 1)
prefix_size = 0;
if (prefix_size > 0 && prefix[prefix_size - 1] == '0')
--prefix_size;
unsigned number_size = prefix_size + spec.precision();
if (number_size < width) {
buffer_.reserve(width);

View File

@ -229,6 +229,7 @@ TEST(PrintfTest, DynamicWidth) {
TEST(PrintfTest, Precision) {
EXPECT_PRINTF("00042", "%.5d", 42);
EXPECT_PRINTF("-00042", "%.5d", -42);
EXPECT_PRINTF("00042", "%.5x", 0x42);
EXPECT_PRINTF("0x00042", "%#.5x", 0x42);
EXPECT_PRINTF("00042", "%.5o", 042);