Fix handling of fixed enums in clang (#580)

This commit is contained in:
Victor Zverovich
2018-02-10 06:17:42 -08:00
parent 66afd9b33a
commit 0b635c9dc5
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -1508,6 +1508,14 @@ TEST(FormatTest, Enum) {
EXPECT_EQ("0", fmt::format("{}", A));
}
#if FMT_USE_STRONG_ENUMS
enum TestFixedEnum : short { B };
TEST(FormatTest, FixedEnum) {
EXPECT_EQ("0", fmt::format("{}", B));
}
#endif
using buffer_range = fmt::back_insert_range<fmt::internal::buffer>;
class mock_arg_formatter :