summaryrefslogtreecommitdiff
path: root/absl/container/inlined_vector.h
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2019-01-17 09:48:22 -0800
committerGravatar Alex Strelnikov <strel@google.com>2019-01-17 14:35:37 -0500
commitefccc502606bed768e50a6cd5806d8eb13e4e935 (patch)
treecfeef235fa41c767f5570453ef86509fdc823aac /absl/container/inlined_vector.h
parent5e6a78131f7bd5940218462c07d88cdefdd75dbe (diff)
Export of internal Abseil changes.
-- b7d4f72ebb8a052cb2c6dfbfb628200eb64585c5 by CJ Johnson <johnsoncj@google.com>: `Hash` -> `H` for AbslHashValue in InlinedVector PiperOrigin-RevId: 229765535 -- ecceb8dc7eb9fe576dd0b8f0e95b5d3c3e92795d by Abseil Team <absl-team@google.com>: fix ubsan error in Mutex on arm32 PiperOrigin-RevId: 229744897 GitOrigin-RevId: b7d4f72ebb8a052cb2c6dfbfb628200eb64585c5 Change-Id: Ic0fd2252f9838d5fceffc808d05a09a8bc872efc
Diffstat (limited to 'absl/container/inlined_vector.h')
-rw-r--r--absl/container/inlined_vector.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h
index 4849f7ea..649e904a 100644
--- a/absl/container/inlined_vector.h
+++ b/absl/container/inlined_vector.h
@@ -808,8 +808,8 @@ class InlinedVector {
}
private:
- template <typename Hash, typename TheT, size_t TheN, typename TheA>
- friend Hash AbslHashValue(Hash, const InlinedVector<TheT, TheN, TheA>& vec);
+ template <typename H, typename TheT, size_t TheN, typename TheA>
+ friend H AbslHashValue(H, const InlinedVector<TheT, TheN, TheA>& vector);
// Holds whether the vector is allocated or not in the lowest bit and the size
// in the high bits:
@@ -1358,11 +1358,11 @@ bool operator>=(const InlinedVector<T, N, A>& a,
//
// Provides `absl::Hash` support for inlined vectors. You do not normally call
// this function directly.
-template <typename Hash, typename TheT, size_t TheN, typename TheA>
-Hash AbslHashValue(Hash hash, const InlinedVector<TheT, TheN, TheA>& vec) {
- auto p = vec.data();
- auto n = vec.size();
- return Hash::combine(Hash::combine_contiguous(std::move(hash), p, n), n);
+template <typename H, typename TheT, size_t TheN, typename TheA>
+H AbslHashValue(H hash, const InlinedVector<TheT, TheN, TheA>& vector) {
+ auto p = vector.data();
+ auto n = vector.size();
+ return H::combine(H::combine_contiguous(std::move(hash), p, n), n);
}
// -----------------------------------------------------------------------------