Title: [257403] branches/safari-609.1.20.111-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h
- Revision
- 257403
- Author
- [email protected]
- Date
- 2020-02-25 17:54:21 -0800 (Tue, 25 Feb 2020)
Log Message
Unreviewed build fix, rdar://problem/59654262
Modified Paths
Diff
Modified: branches/safari-609.1.20.111-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h (257402 => 257403)
--- branches/safari-609.1.20.111-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h 2020-02-26 01:49:42 UTC (rev 257402)
+++ branches/safari-609.1.20.111-branch/Source/_javascript_Core/runtime/StructureTransitionTable.h 2020-02-26 01:54:21 UTC (rev 257403)
@@ -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