Title: [257404] branches/safari-609.1.20.4-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h
- Revision
- 257404
- Author
- [email protected]
- Date
- 2020-02-25 18:03:28 -0800 (Tue, 25 Feb 2020)
Log Message
Unreviewed build fix, rdar://problem/59654262
Modified Paths
Diff
Modified: branches/safari-609.1.20.4-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h (257403 => 257404)
--- branches/safari-609.1.20.4-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h 2020-02-26 01:54:21 UTC (rev 257403)
+++ branches/safari-609.1.20.4-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h 2020-02-26 02:03:28 UTC (rev 257404)
@@ -215,7 +215,7 @@
static unsigned hash(const Key& p)
{
- return PtrHash<UniquedStringImpl*>::hash(p.first) + p.second;
+ return PtrHash<UniquedStringImpl*>::hash(std::get<0>(p)) + std::get<1>(p);
}
static bool equal(const Key& a, const Key& b)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes