We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8644b3 commit 02b55d2Copy full SHA for 02b55d2
clang/lib/AST/ItaniumCXXABI.cpp
@@ -110,7 +110,7 @@ struct DenseMapInfo<DecompositionDeclName> {
110
}
111
static unsigned getHashValue(DecompositionDeclName Key) {
112
assert(!isEqual(Key, getEmptyKey()) && !isEqual(Key, getTombstoneKey()));
113
- return llvm::hash_combine_range(Key.begin(), Key.end());
+ return llvm::hash_combine_range(Key);
114
115
static bool isEqual(DecompositionDeclName LHS, DecompositionDeclName RHS) {
116
if (std::optional<bool> Result =
0 commit comments