fix for disable ability to stream user defined types if not at least c++11
This commit is contained in:
parent
d747cc1c3d
commit
4805b21381
@ -113,11 +113,11 @@ std::ostream &operator<<(std::ostream &os, EmptyTest) {
|
|||||||
|
|
||||||
#if __cplusplus >= 201103L
|
#if __cplusplus >= 201103L
|
||||||
struct UserDefinedTest { int i = 42; };
|
struct UserDefinedTest { int i = 42; };
|
||||||
#endif
|
|
||||||
|
|
||||||
std::ostream &operator<<(std::ostream &os, const UserDefinedTest &u) {
|
std::ostream &operator<<(std::ostream &os, const UserDefinedTest &u) {
|
||||||
return os << u.i;
|
return os << u.i;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
TEST(OStreamTest, EmptyCustomOutput) {
|
TEST(OStreamTest, EmptyCustomOutput) {
|
||||||
EXPECT_EQ("", fmt::format("{}", EmptyTest()));
|
EXPECT_EQ("", fmt::format("{}", EmptyTest()));
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user