Googletest export

Fix build under GCC 5

PiperOrigin-RevId: 351607537
diff --git a/googletest/include/gtest/gtest-matchers.h b/googletest/include/gtest/gtest-matchers.h
index 1bb3140..fd8d9c6 100644
--- a/googletest/include/gtest/gtest-matchers.h
+++ b/googletest/include/gtest/gtest-matchers.h
@@ -418,7 +418,7 @@
            std::is_trivially_destructible<M>::value;
   }
 
-  template <typename M, bool = IsInlined<M>()>
+  template <typename M, bool = MatcherBase::IsInlined<M>()>
   struct ValuePolicy {
     static const M& Get(const MatcherBase& m) {
       // When inlined along with Init, need to be explicit to avoid violating