diff options
author | Gennadiy Civil <misterg@google.com> | 2019-08-02 13:26:55 -0400 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-08-02 13:26:55 -0400 |
commit | cc34e8fa7ccae09ab12a54abed0eb6d912a12bb5 (patch) | |
tree | 21a6579ece32721a74d99870d45ea687e21ff746 /googlemock/include/gmock/gmock-generated-actions.h | |
parent | 47092933fde8d08773ac98c011b311d82f858e22 (diff) | |
parent | 287b37f23f534a0f9b1eb6072c882cbcaaffc097 (diff) | |
download | googletest-cc34e8fa7ccae09ab12a54abed0eb6d912a12bb5.tar.gz googletest-cc34e8fa7ccae09ab12a54abed0eb6d912a12bb5.tar.bz2 googletest-cc34e8fa7ccae09ab12a54abed0eb6d912a12bb5.zip |
Merge pull request #2357 from kuzkry:obsolete-documentation
PiperOrigin-RevId: 261343928
Diffstat (limited to 'googlemock/include/gmock/gmock-generated-actions.h')
-rw-r--r-- | googlemock/include/gmock/gmock-generated-actions.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/googlemock/include/gmock/gmock-generated-actions.h b/googlemock/include/gmock/gmock-generated-actions.h index bf95300b..981af78f 100644 --- a/googlemock/include/gmock/gmock-generated-actions.h +++ b/googlemock/include/gmock/gmock-generated-actions.h @@ -259,11 +259,10 @@ class ActionHelper { // // CAVEAT: // -// ACTION*() can only be used in a namespace scope. The reason is -// that C++ doesn't yet allow function-local types to be used to -// instantiate templates. The up-coming C++0x standard will fix this. -// Once that's done, we'll consider supporting using ACTION*() inside -// a function. +// ACTION*() can only be used in a namespace scope as templates cannot be +// declared inside of a local class. +// Users can, however, define any local functors (e.g. a lambda) that +// can be used as actions. // // MORE INFORMATION: // |