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 | |
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')
-rw-r--r-- | absl/container/fixed_array.h | 2 | ||||
-rw-r--r-- | absl/container/inlined_vector.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/absl/container/fixed_array.h b/absl/container/fixed_array.h index b67379cf..efc40a5f 100644 --- a/absl/container/fixed_array.h +++ b/absl/container/fixed_array.h @@ -342,7 +342,7 @@ class FixedArray { // Relational operators. Equality operators are elementwise using // `operator==`, while order operators order FixedArrays lexicographically. friend bool operator==(const FixedArray& lhs, const FixedArray& rhs) { - return absl::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); + return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); } friend bool operator!=(const FixedArray& lhs, const FixedArray& rhs) { 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!=(...)` |