Fix warning in clang

This commit is contained in:
Victor Zverovich 2014-09-25 07:38:16 -07:00
parent f43caef311
commit c2f02df2f5

View File

@ -106,6 +106,7 @@ TEST(FormatTest, FormatErrorCode) {
fmt::internal::INLINE_BUFFER_SIZE - msg.size() - sep.size(), 'x');
format_error_code(w, 42, prefix);
EXPECT_EQ(prefix + sep + msg, w.str());
EXPECT_EQ(fmt::internal::INLINE_BUFFER_SIZE, w.size());
std::size_t size = fmt::internal::INLINE_BUFFER_SIZE;
EXPECT_EQ(size, w.size());
}
}