diff options
author | Rose <83477269+AtariDreams@users.noreply.github.com> | 2023-02-21 09:54:00 -0500 |
---|---|---|
committer | Rose <83477269+AtariDreams@users.noreply.github.com> | 2023-02-22 09:38:16 -0500 |
commit | 6247f0e918bbc0519955d41b135069dcc2bbd453 (patch) | |
tree | 34c1a79c82df589c3206460d86c83c4a2018bee7 /absl/container/inlined_vector.h | |
parent | c3b5022604551a045e383c68071d7be0a807839d (diff) |
Resolve TODO: remove C++11 workarounds
We no longer support C++11 as per the Google C++ support documentation: we support C++14 and up, so we can remove these workarounds.
Diffstat (limited to 'absl/container/inlined_vector.h')
-rw-r--r-- | absl/container/inlined_vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h index 7058f375..42a4f946 100644 --- a/absl/container/inlined_vector.h +++ b/absl/container/inlined_vector.h @@ -843,7 +843,7 @@ bool operator==(const absl::InlinedVector<T, N, A>& a, const absl::InlinedVector<T, N, A>& b) { auto a_data = a.data(); auto b_data = b.data(); - return absl::equal(a_data, a_data + a.size(), b_data, b_data + b.size()); + return std::equal(a_data, a_data + a.size(), b_data, b_data + b.size()); } // `operator!=(...)` |