diff options
author | Copybara-Service <copybara-worker@google.com> | 2023-02-22 10:52:21 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-02-22 10:52:21 -0800 |
commit | 402e1319211cf19e455aa2a3b2de1f1235bb4326 (patch) | |
tree | 8718ce8da0130fb6d4e2f2d8809f5f78aa899061 /absl/container/fixed_array.h | |
parent | 277af61c83028863dfac4260ad24b3d579f3201b (diff) | |
parent | 6247f0e918bbc0519955d41b135069dcc2bbd453 (diff) | |
download | abseil-402e1319211cf19e455aa2a3b2de1f1235bb4326.tar.gz abseil-402e1319211cf19e455aa2a3b2de1f1235bb4326.tar.bz2 abseil-402e1319211cf19e455aa2a3b2de1f1235bb4326.zip |
Merge pull request #1403 from AtariDreams:c++11
PiperOrigin-RevId: 511539869
Change-Id: I32d5e91537b078691988e7e6d3244c682eb8d7d2
Diffstat (limited to 'absl/container/fixed_array.h')
-rw-r--r-- | absl/container/fixed_array.h | 2 |
1 files changed, 1 insertions, 1 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) { |