summaryrefslogtreecommitdiffstats
path: root/googlemock/include/gmock/gmock-generated-actions.h
diff options
context:
space:
mode:
authorKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-07-28 10:44:32 (GMT)
committerKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-07-31 06:17:32 (GMT)
commit287b37f23f534a0f9b1eb6072c882cbcaaffc097 (patch)
treebb6e1d85d15da036fdf400ec411c7d5e6a75beb3 /googlemock/include/gmock/gmock-generated-actions.h
parentb77e5c76252bac322bb82c5b444f050bd0d92451 (diff)
downloadgoogletest-287b37f23f534a0f9b1eb6072c882cbcaaffc097.zip
googletest-287b37f23f534a0f9b1eb6072c882cbcaaffc097.tar.gz
googletest-287b37f23f534a0f9b1eb6072c882cbcaaffc097.tar.bz2
update pre-C++11 paragraphsrefs/pull/2357/head
Diffstat (limited to 'googlemock/include/gmock/gmock-generated-actions.h')
-rw-r--r--googlemock/include/gmock/gmock-generated-actions.h9
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 bf95300..981af78 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:
//