diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2017-11-07 10:32:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 10:32:23 -0800 |
commit | 49eb76df471857fe1bd573b0636b1f9dd4fc8e4f (patch) | |
tree | 156d379675f771d096d84a2ced2972b46ed83a4a /googlemock/docs/CheatSheet.md | |
parent | ceee80c383d6f34af1a4e0fbb464f3f144cded68 (diff) | |
parent | d175c8bf823e709d570772b038757fadf63bc632 (diff) | |
download | googletest-49eb76df471857fe1bd573b0636b1f9dd4fc8e4f.tar.gz googletest-49eb76df471857fe1bd573b0636b1f9dd4fc8e4f.tar.bz2 googletest-49eb76df471857fe1bd573b0636b1f9dd4fc8e4f.zip |
Merge branch 'master' into hethi/issue-360-remove-GTEST_HAS_PARAM_TESTS
Diffstat (limited to 'googlemock/docs/CheatSheet.md')
-rw-r--r-- | googlemock/docs/CheatSheet.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/CheatSheet.md b/googlemock/docs/CheatSheet.md index c94c2dac..c6367fdd 100644 --- a/googlemock/docs/CheatSheet.md +++ b/googlemock/docs/CheatSheet.md @@ -65,7 +65,7 @@ can specify it by appending `_WITH_CALLTYPE` to any of the macros described in the previous two sections and supplying the calling convention as the first argument to the macro. For example, ``` - MOCK_METHOD_1_WITH_CALLTYPE(STDMETHODCALLTYPE, Foo, bool(int n)); + MOCK_METHOD1_WITH_CALLTYPE(STDMETHODCALLTYPE, Foo, bool(int n)); MOCK_CONST_METHOD2_WITH_CALLTYPE(STDMETHODCALLTYPE, Bar, int(double x, double y)); ``` where `STDMETHODCALLTYPE` is defined by `<objbase.h>` on Windows. |