Googletest export

Add missing `is_gtest_matcher` to the polymorphic matcher example.

PiperOrigin-RevId: 353881883
diff --git a/docs/gmock_cook_book.md b/docs/gmock_cook_book.md
index de3464d..208ca9a 100644
--- a/docs/gmock_cook_book.md
+++ b/docs/gmock_cook_book.md
@@ -3627,6 +3627,8 @@
 
 class NotNullMatcher {
  public:
+  using is_gtest_matcher = void;
+
   // To implement a polymorphic matcher, we just need to make MatchAndExplain a
   // template on its first argument.