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.
This commit is contained in:
Carlos O'Ryan 2017-07-01 15:30:55 -04:00
parent f20797bd8d
commit 2fcbc0c1ab
4 changed files with 12 additions and 12 deletions

View File

@ -1920,9 +1920,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:

View File

@ -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:

View File

@ -1841,9 +1841,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:

View File

@ -1869,9 +1869,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: