diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h index 4849f7ead..649e904a9 100644 --- a/absl/container/inlined_vector.h +++ b/absl/container/inlined_vector.h @@ -808,8 +808,8 @@ class InlinedVector { } private: - template - friend Hash AbslHashValue(Hash, const InlinedVector& vec); + template + friend H AbslHashValue(H, const InlinedVector& 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& a, // // Provides `absl::Hash` support for inlined vectors. You do not normally call // this function directly. -template -Hash AbslHashValue(Hash hash, const InlinedVector& vec) { - auto p = vec.data(); - auto n = vec.size(); - return Hash::combine(Hash::combine_contiguous(std::move(hash), p, n), n); +template +H AbslHashValue(H hash, const InlinedVector& vector) { + auto p = vector.data(); + auto n = vector.size(); + return H::combine(H::combine_contiguous(std::move(hash), p, n), n); } // ----------------------------------------------------------------------------- diff --git a/absl/synchronization/mutex.cc b/absl/synchronization/mutex.cc index f1b42db15..40ab7d22f 100644 --- a/absl/synchronization/mutex.cc +++ b/absl/synchronization/mutex.cc @@ -1841,7 +1841,7 @@ static void CheckForMutexCorruption(intptr_t v, const char* label) { // Test for either of two situations that should not occur in v: // kMuWriter and kMuReader // kMuWrWait and !kMuWait - const intptr_t w = v ^ kMuWait; + const uintptr_t w = v ^ kMuWait; // By flipping that bit, we can now test for: // kMuWriter and kMuReader in w // kMuWrWait and kMuWait in w