diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md index aafb3b3b..975362bf 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -614,19 +614,6 @@ composite action - trying to do so will result in a run-time error. #### Defining Actions -
`struct SumAction {` - `template - `T operator()(T x, Ty) { return x + y; }` - `};` - |
- Defines a generic functor that can be used as an action summing its - arguments. |