fmt/test/gtest
Alexey Ochapov 9e5072f1a8
gtest: fix std::is_trivially_copy_constructible for GCC 4.8 & 4.9 properly
`std::is_pod<T>` was deprecated in C++20

original (pre `is_pod`) error on GCC 4.8:
```
/fmt/test/gtest/gtest.h: In static member function 'static constexpr bool testing::internal::MatcherBase<T>::IsInlined()':
/fmt/test/gtest/gtest.h:6512:12: error: 'is_trivially_copy_constructible' was not declared in this scope
            std::is_trivially_copy_constructible<M>::value &&
            ^
/fmt/test/gtest/gtest.h:6512:45: error: expected primary-expression before '>' token
            std::is_trivially_copy_constructible<M>::value &&
                                                  ^
/fmt/test/gtest/gtest.h:6512:46: error: '::value' has not been declared
            std::is_trivially_copy_constructible<M>::value &&
                                                   ^
```
2021-04-29 02:08:18 +03:00
..
gmock gtest: move GTest/GMock files to separate directory, update GTest/GMock usages 2021-04-29 01:59:43 +03:00
gtest gtest: fix std::is_trivially_copy_constructible for GCC 4.8 & 4.9 properly 2021-04-29 02:08:18 +03:00
.clang-format gtest: add .clang-format file into test/gtest directory to prevent formatting there 2021-04-29 02:01:12 +03:00
CMakeLists.txt gtest: remove obsolete GTEST_LANG_CXX11 compile definition setting 2021-04-29 02:06:07 +03:00
gmock-gtest-all.cc gtest: move GTest/GMock files to separate directory, update GTest/GMock usages 2021-04-29 01:59:43 +03:00