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.
2 parents 65fae09 + 25d83bf commit af7f1e6Copy full SHA for af7f1e6
include/swift/Basic/Fingerprint.h
@@ -123,9 +123,9 @@ template <> struct StableHasher::Combiner<Fingerprint> {
123
// raw bytes from the core by hand.
124
uint8_t buffer[8];
125
memcpy(buffer, &Val.core.first, sizeof(buffer));
126
- hasher.combine(buffer);
+ hasher.combine<sizeof(buffer)>(buffer);
127
memcpy(buffer, &Val.core.second, sizeof(buffer));
128
129
}
130
};
131
0 commit comments