diff options
author | Abseil Team <absl-team@google.com> | 2020-10-30 10:38:44 -0700 |
---|---|---|
committer | vslashg <gfalcon@google.com> | 2020-10-30 15:43:07 -0400 |
commit | c9894d1dc38577c4ce50eefe0a944ea8d46d7fc5 (patch) | |
tree | 84697fb6c0ae12c464e495e4ae7414f584f9875f /absl/algorithm | |
parent | e9b9e38f67a008d66133535a72ada843bd66013f (diff) |
Export of internal Abseil changes
--
dce086fa6e045bed433c664f95a6581b7ffb2d98 by Abseil Team <absl-team@google.com>:
fix spelling error "fulfil" -> "fulfill"
PiperOrigin-RevId: 339898016
--
10faa4546b69d8a07f949bc03dd9671231232ad0 by Abseil Team <absl-team@google.com>:
Clarify comments on variant::emplace
PiperOrigin-RevId: 339897241
--
0d02261a7a8b9c11e3a4e76dfedf4d95590e2419 by Derek Mauro <dmauro@google.com>:
Use thread_local for ThreadIdentity storage on Apple platforms
that support it
PiperOrigin-RevId: 339698124
GitOrigin-RevId: dce086fa6e045bed433c664f95a6581b7ffb2d98
Change-Id: I8c668b33c805fd5231ceb285652c80f312e5a33a
Diffstat (limited to 'absl/algorithm')
-rw-r--r-- | absl/algorithm/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/algorithm/container.h b/absl/algorithm/container.h index 09b91f74..6398438f 100644 --- a/absl/algorithm/container.h +++ b/absl/algorithm/container.h @@ -188,7 +188,7 @@ bool c_any_of(const C& c, Pred&& pred) { // c_none_of() // // Container-based version of the <algorithm> `std::none_of()` function to -// test if no elements in a container fulfil a condition. +// test if no elements in a container fulfill a condition. template <typename C, typename Pred> bool c_none_of(const C& c, Pred&& pred) { return std::none_of(container_algorithm_internal::c_begin(c), |