Implement more printf length specifiers.

This commit is contained in:
Victor Zverovich
2014-08-09 10:04:35 -07:00
parent 6a8becb5bf
commit 316ae7e244
2 changed files with 12 additions and 8 deletions
+2 -2
View File
@@ -350,8 +350,8 @@ TEST(PrintfTest, Length) {
TestLength<unsigned char>("hh");
TestLength<short>("h");
TestLength<unsigned short>("h");
//TestLength<long>("l");
//TestLength<unsigned long>("l");
TestLength<long>("l");
TestLength<unsigned long>("l");
// TODO: more tests
}