Remove conditional and to_iterator

This commit is contained in:
Victor Zverovich
2017-09-04 13:56:14 -07:00
parent 1cade7ef4d
commit c18a4041f9
3 changed files with 2 additions and 35 deletions
-9
View File
@@ -839,12 +839,3 @@ TEST(UtilTest, IsEnumConvertibleToInt) {
EXPECT_TRUE(fmt::internal::convert_to_int<TestEnum>::enable_conversion);
}
#endif
TEST(UtilTest, Conditional) {
int i = 0;
fmt::internal::conditional<true, int, char>::type *pi = &i;
(void)pi;
char c = 0;
fmt::internal::conditional<false, int, char>::type *pc = &c;
(void)pc;
}