aboutsummaryrefslogtreecommitdiffstats
path: root/include/gmock/gmock-matchers.h
diff options
context:
space:
mode:
authorkosak <kosak@google.com>2015-07-27 23:05:57 +0000
committerkosak <kosak@google.com>2015-07-27 23:05:57 +0000
commit6702b97d5e012f9eb490daa6cfe4cef98f312b6b (patch)
tree8c371995cbc84c5100c3d837f924bc63e44f33fc /include/gmock/gmock-matchers.h
parentc820efcc04bdc2bd673f112195bec11e70f0cc38 (diff)
downloadgoogletest-6702b97d5e012f9eb490daa6cfe4cef98f312b6b.tar.gz
googletest-6702b97d5e012f9eb490daa6cfe4cef98f312b6b.tar.bz2
googletest-6702b97d5e012f9eb490daa6cfe4cef98f312b6b.zip
Inject customization point for gmock-matchers.h
Diffstat (limited to 'include/gmock/gmock-matchers.h')
-rw-r--r--include/gmock/gmock-matchers.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/gmock/gmock-matchers.h b/include/gmock/gmock-matchers.h
index 67cbe0fb..33b37a7a 100644
--- a/include/gmock/gmock-matchers.h
+++ b/include/gmock/gmock-matchers.h
@@ -4392,5 +4392,8 @@ inline InnerMatcher AllArgs(const InnerMatcher& matcher) { return matcher; }
} // namespace testing
+// Include any custom callback matchers added by the local installation.
+// We must include this header at the end to make sure it can use the
+// declarations from this file.
+#include "gmock/internal/custom/gmock-matchers.h"
#endif // GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
-