aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/v1_5/CookBook.md
diff options
context:
space:
mode:
authorCarlos O'Ryan <coryan@google.com>2017-07-01 15:30:55 -0400
committerCarlos O'Ryan <coryan@google.com>2017-07-01 15:30:55 -0400
commit2fcbc0c1ab4877f2a149fe2b4760fd2bf182d0b1 (patch)
treeaa8a1e1923655ca1152cea2f06f3474d09492add /googlemock/docs/v1_5/CookBook.md
parentf20797bd8dd1c5ea3ae95218abdf3807be497993 (diff)
downloadgoogletest-2fcbc0c1ab4877f2a149fe2b4760fd2bf182d0b1.tar.gz
googletest-2fcbc0c1ab4877f2a149fe2b4760fd2bf182d0b1.tar.bz2
googletest-2fcbc0c1ab4877f2a149fe2b4760fd2bf182d0b1.zip
Remove silly claim that C++ lacks lambdas.
The document itself uses lambdas later, all the scaffolding to work around lack of lambdas should be considered for removal, but that is much larger an effort than I can commit to.
Diffstat (limited to 'googlemock/docs/v1_5/CookBook.md')
-rw-r--r--googlemock/docs/v1_5/CookBook.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/googlemock/docs/v1_5/CookBook.md b/googlemock/docs/v1_5/CookBook.md
index f85bc3bf..0b25d2c5 100644
--- a/googlemock/docs/v1_5/CookBook.md
+++ b/googlemock/docs/v1_5/CookBook.md
@@ -1773,9 +1773,9 @@ using ::testing::_;
// second argument DoThis() receives.
```
-Arghh, you need to refer to a mock function argument but C++ has no
-lambda (yet), so you have to define your own action. :-( Or do you
-really?
+Arghh, you need to refer to a mock function argument but your version
+of C++ has no lambdas, so you have to define your own action. :-(
+Or do you really?
Well, Google Mock has an action to solve _exactly_ this problem: