Title: [226673] trunk/Source/_javascript_Core
- Revision
- 226673
- Author
- [email protected]
- Date
- 2018-01-09 19:04:35 -0800 (Tue, 09 Jan 2018)
Log Message
REGRESSION (r226667): CodeBlocks should be in IsoSubspaces
<https://bugs.webkit.org/show_bug.cgi?id=180884>
Fixes the following build error:
heap/Heap.cpp:2708:10: error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
* heap/Heap.cpp:
(JSC::Heap::addCoreConstraints): Remove 'this' from lambda to
fix the build.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (226672 => 226673)
--- trunk/Source/_javascript_Core/ChangeLog 2018-01-10 03:00:11 UTC (rev 226672)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-01-10 03:04:35 UTC (rev 226673)
@@ -1,3 +1,16 @@
+2018-01-09 David Kilzer <[email protected]>
+
+ REGRESSION (r226667): CodeBlocks should be in IsoSubspaces
+ <https://bugs.webkit.org/show_bug.cgi?id=180884>
+
+ Fixes the following build error:
+
+ heap/Heap.cpp:2708:10: error: lambda capture 'this' is not used [-Werror,-Wunused-lambda-capture]
+
+ * heap/Heap.cpp:
+ (JSC::Heap::addCoreConstraints): Remove 'this' from lambda to
+ fix the build.
+
2018-01-09 Keith Miller <[email protected]>
and32 with an Address source on ARM64 did not invalidate dataTempRegister
Modified: trunk/Source/_javascript_Core/heap/Heap.cpp (226672 => 226673)
--- trunk/Source/_javascript_Core/heap/Heap.cpp 2018-01-10 03:00:11 UTC (rev 226672)
+++ trunk/Source/_javascript_Core/heap/Heap.cpp 2018-01-10 03:04:35 UTC (rev 226673)
@@ -2705,7 +2705,7 @@
m_constraintSet->add(
"O", "Output",
- [this] (SlotVisitor& slotVisitor) {
+ [] (SlotVisitor& slotVisitor) {
VM& vm = slotVisitor.vm();
auto callOutputConstraint = [] (SlotVisitor& slotVisitor, HeapCell* heapCell, HeapCell::Kind) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes