Add another -Wdeprecated-copy hack for gtest

This commit is contained in:
Benjamin Kramer 2021-05-14 20:37:03 +02:00
parent 709f2c7e14
commit 09499efb7a
1 changed files with 13 additions and 0 deletions

View File

@ -58,6 +58,13 @@
# pragma warning(disable:4100)
#endif
#ifdef __clang__
#if __has_warning("-Wdeprecated-copy")
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-copy"
#endif
#endif
namespace testing {
// To implement an action Foo, define:
@ -1136,6 +1143,12 @@ inline ::std::reference_wrapper<T> ByRef(T& l_value) { // NOLINT
} // namespace testing
#ifdef __clang__
#if __has_warning("-Wdeprecated-copy")
#pragma clang diagnostic pop
#endif
#endif
#ifdef _MSC_VER
# pragma warning(pop)
#endif