Merge "Fix anonymous class error" into main

This commit is contained in:
Treehugger Robot 2024-06-10 20:41:48 +00:00 committed by Gerrit Code Review
commit 44b0e7a725

View file

@ -32,7 +32,11 @@
#include <math.h> // For M_PI_2/M_PI_2l.
// Prettify gtest Complex printing.
// Macro 'complex' defined in complex.h conflicts with iostream.
#pragma push_macro("complex")
#undef complex
#include <iostream>
#pragma pop_macro("complex")
namespace testing {
namespace internal {
inline void PrintTo(const double _Complex& c, std::ostream* os) {