Title: [209692] trunk/Source
Revision
209692
Author
[email protected]
Date
2016-12-11 17:34:07 -0800 (Sun, 11 Dec 2016)

Log Message

Change to use #pragma once (requested by Darin Adler).

* wtf/LockedPrintStream.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/runtime/Options.h (209691 => 209692)


--- trunk/Source/_javascript_Core/runtime/Options.h	2016-12-12 01:19:47 UTC (rev 209691)
+++ trunk/Source/_javascript_Core/runtime/Options.h	2016-12-12 01:34:07 UTC (rev 209692)
@@ -184,7 +184,7 @@
     v(bool, verboseSanitizeStack, false, Normal, nullptr) \
     v(bool, useGenerationalGC, true, Normal, nullptr) \
     v(bool, useConcurrentBarriers, true, Normal, nullptr) \
-    v(bool, useConcurrentGC, false, Normal, nullptr) \
+    v(bool, useConcurrentGC, true, Normal, nullptr) \
     v(bool, collectContinuously, false, Normal, nullptr) \
     v(double, collectContinuouslyPeriodMS, 1, Normal, nullptr) \
     v(bool, forceFencedBarrier, false, Normal, nullptr) \

Modified: trunk/Source/WTF/ChangeLog (209691 => 209692)


--- trunk/Source/WTF/ChangeLog	2016-12-12 01:19:47 UTC (rev 209691)
+++ trunk/Source/WTF/ChangeLog	2016-12-12 01:34:07 UTC (rev 209692)
@@ -1,3 +1,9 @@
+2016-12-11  Filip Pizlo  <[email protected]>
+
+        Change to use #pragma once (requested by Darin Adler).
+
+        * wtf/LockedPrintStream.h:
+
 2016-12-10  Filip Pizlo  <[email protected]>
 
         MarkedBlock::marksConveyLivenessDuringMarking should take into account collection scope

Modified: trunk/Source/WTF/wtf/LockedPrintStream.h (209691 => 209692)


--- trunk/Source/WTF/wtf/LockedPrintStream.h	2016-12-12 01:19:47 UTC (rev 209691)
+++ trunk/Source/WTF/wtf/LockedPrintStream.h	2016-12-12 01:34:07 UTC (rev 209692)
@@ -23,8 +23,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  */
 
-#ifndef LockedPrintStream_h
-#define LockedPrintStream_h
+#pragma once
 
 #include <wtf/PrintStream.h>
 #include <wtf/RecursiveLockAdapter.h>
@@ -57,4 +56,3 @@
 
 using WTF::LockedPrintStream;
 
-#endif // LockedPrintStream_h
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to