Fix FormatInt.

This commit is contained in:
Victor Zverovich
2013-09-10 09:28:04 -07:00
parent 2951f8b3d8
commit eded10cf31
2 changed files with 2 additions and 1 deletions

View File

@@ -1287,6 +1287,7 @@ TEST(FormatterTest, Examples) {
TEST(FormatIntTest, FormatInt) {
EXPECT_EQ("42", fmt::FormatInt(42).str());
EXPECT_EQ("-42", fmt::FormatInt(-42).str());
}
template <typename T>