aboutsummaryrefslogtreecommitdiff
path: root/third_party/abseil-cpp/absl/functional/function_ref.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/abseil-cpp/absl/functional/function_ref.h')
-rw-r--r--third_party/abseil-cpp/absl/functional/function_ref.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/abseil-cpp/absl/functional/function_ref.h b/third_party/abseil-cpp/absl/functional/function_ref.h
index 824e3cea9d..f9779607fb 100644
--- a/third_party/abseil-cpp/absl/functional/function_ref.h
+++ b/third_party/abseil-cpp/absl/functional/function_ref.h
@@ -69,7 +69,8 @@ class FunctionRef;
// An `absl::FunctionRef` is a lightweight wrapper to any invokable object with
// a compatible signature. Generally, an `absl::FunctionRef` should only be used
// as an argument type and should be preferred as an argument over a const
-// reference to a `std::function`.
+// reference to a `std::function`. `absl::FunctionRef` itself does not allocate,
+// although the wrapped invokable may.
//
// Example:
//