Fix gcc 4.8 build

This commit is contained in:
Victor Zverovich 2021-04-24 11:04:34 -07:00
parent b4f9a05894
commit 6956b10b2d

View File

@ -6509,7 +6509,7 @@ class MatcherBase : private MatcherDescriberInterface {
template <typename M>
static constexpr bool IsInlined() {
return sizeof(M) <= sizeof(Buffer) && alignof(M) <= alignof(Buffer) &&
std::is_trivially_copy_constructible<M>::value &&
std::is_pod<M>::value &&
std::is_trivially_destructible<M>::value;
}