Commit ccc8f5db authored by Victor Zverovich's avatar Victor Zverovich

Disable integral operator<< (#1316)

parent 20fdb88a
...@@ -49,6 +49,10 @@ template <typename Char> struct test_stream : std::basic_ostream<Char> { ...@@ -49,6 +49,10 @@ template <typename Char> struct test_stream : std::basic_ostream<Char> {
// Hide all operator<< from std::basic_ostream<Char>. // Hide all operator<< from std::basic_ostream<Char>.
void_t<> operator<<(null<>); void_t<> operator<<(null<>);
void_t<> operator<<(const Char*); void_t<> operator<<(const Char*);
template <typename T, FMT_ENABLE_IF(std::is_convertible<T, int>::value &&
!std::is_enum<T>::value)>
void_t<> operator<<(T);
}; };
// Checks if T has a user-defined operator<< (e.g. not a member of // Checks if T has a user-defined operator<< (e.g. not a member of
......
...@@ -250,7 +250,8 @@ struct convertible { ...@@ -250,7 +250,8 @@ struct convertible {
operator T() const { return value; } operator T() const { return value; }
}; };
TEST(OStreamTest, ConvertibleToCString) { TEST(OStreamTest, DisableBuiltinOStreamOperators) {
EXPECT_EQ("x", fmt::format("{}", convertible<char>('x'))); EXPECT_EQ("42", fmt::format("{:d}", convertible<unsigned short>(42)));
EXPECT_EQ(L"42", fmt::format(L"{:d}", convertible<unsigned short>(42)));
EXPECT_EQ("foo", fmt::format("{}", convertible<const char*>("foo"))); EXPECT_EQ("foo", fmt::format("{}", convertible<const char*>("foo")));
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment