Title: [254832] trunk/Source
Revision
254832
Author
[email protected]
Date
2020-01-20 12:17:41 -0800 (Mon, 20 Jan 2020)

Log Message

Fix missing header guards and clean up empty files in bmalloc, WTF, _javascript_Core
<https://webkit.org/b/206481>

Reviewed by Darin Adler.

Source/bmalloc:

* bmalloc/PerThread.cpp: Remove empty file.
* bmalloc/ScopeExit.h: Add #pragma once.

Source/_javascript_Core:

* dfg/DFGPrePostNumbering.cpp: Remove empty file.
* dfg/DFGPrePostNumbering.h: Remove empty file.
* runtime/OptionEntry.h: Remove empty file.

* API/JSCallbackObjectFunctions.h:
* b3/testb3.h:
* heap/IsoInlinedHeapCellType.h:
* wasm/WasmGeneratorTraits.h:
- Add #pragma once.

Source/WTF:

* wtf/cocoa/Entitlements.h:
* wtf/win/PathWalker.h:
- Add #pragma once.

Modified Paths

Removed Paths

Diff

Modified: trunk/Source/_javascript_Core/API/JSCallbackObjectFunctions.h (254831 => 254832)


--- trunk/Source/_javascript_Core/API/JSCallbackObjectFunctions.h	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/_javascript_Core/API/JSCallbackObjectFunctions.h	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2019 Apple Inc. All rights reserved.
+ * Copyright (C) 2006-2020 Apple Inc. All rights reserved.
  * Copyright (C) 2007 Eric Seidel <[email protected]>
  *
  * Redistribution and use in source and binary forms, with or without
@@ -24,6 +24,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  */
 
+#pragma once
+
 #include "APICast.h"
 #include "Error.h"
 #include "ExceptionHelpers.h"

Modified: trunk/Source/_javascript_Core/ChangeLog (254831 => 254832)


--- trunk/Source/_javascript_Core/ChangeLog	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,3 +1,20 @@
+2020-01-20  David Kilzer  <[email protected]>
+
+        Fix missing header guards and clean up empty files in bmalloc, WTF, _javascript_Core
+        <https://webkit.org/b/206481>
+
+        Reviewed by Darin Adler.
+
+        * dfg/DFGPrePostNumbering.cpp: Remove empty file.
+        * dfg/DFGPrePostNumbering.h: Remove empty file.
+        * runtime/OptionEntry.h: Remove empty file.
+
+        * API/JSCallbackObjectFunctions.h:
+        * b3/testb3.h:
+        * heap/IsoInlinedHeapCellType.h:
+        * wasm/WasmGeneratorTraits.h:
+        - Add #pragma once.
+
 2020-01-18  Caitlin Potter  <[email protected]>
 
         [JSC] add DFG/FTL support for op_to_property_key

Modified: trunk/Source/_javascript_Core/b3/testb3.h (254831 => 254832)


--- trunk/Source/_javascript_Core/b3/testb3.h	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/_javascript_Core/b3/testb3.h	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2019 Apple Inc. All rights reserved.
+ * Copyright (C) 2019-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -23,6 +23,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#pragma once
+
 #include "AirCode.h"
 #include "AirInstInlines.h"
 #include "AirValidate.h"

Deleted: trunk/Source/_javascript_Core/dfg/DFGPrePostNumbering.cpp ( => )


Deleted: trunk/Source/_javascript_Core/dfg/DFGPrePostNumbering.h
===================================================================

Modified: trunk/Source/_javascript_Core/heap/IsoInlinedHeapCellType.h (254831 => 254832)


--- trunk/Source/_javascript_Core/heap/IsoInlinedHeapCellType.h	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/_javascript_Core/heap/IsoInlinedHeapCellType.h	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2019 Apple Inc. All rights reserved.
+ * Copyright (C) 2019-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -23,6 +23,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#pragma once
+
 #include "HeapCellType.h"
 #include "MarkedBlockInlines.h"
 

Deleted: trunk/Source/_javascript_Core/runtime/OptionEntry.h ( => )


Modified: trunk/Source/_javascript_Core/wasm/WasmGeneratorTraits.h
===================================================================
--- trunk/Source/_javascript_Core/wasm/WasmGeneratorTraits.h	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/_javascript_Core/wasm/WasmGeneratorTraits.h	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2019 Apple Inc. All rights reserved.
+ * Copyright (C) 2019-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -23,6 +23,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#pragma once
+
 #if ENABLE(WEBASSEMBLY)
 
 #include "BytecodeStructs.h"

Modified: trunk/Source/WTF/ChangeLog (254831 => 254832)


--- trunk/Source/WTF/ChangeLog	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/WTF/ChangeLog	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,3 +1,14 @@
+2020-01-20  David Kilzer  <[email protected]>
+
+        Fix missing header guards and clean up empty files in bmalloc, WTF, _javascript_Core
+        <https://webkit.org/b/206481>
+
+        Reviewed by Darin Adler.
+
+        * wtf/cocoa/Entitlements.h:
+        * wtf/win/PathWalker.h:
+        - Add #pragma once.
+
 2020-01-19  Claudio Saavedra  <[email protected]>
 
         [GTK] Remove usage of deprecated GTimeVal

Modified: trunk/Source/WTF/wtf/cocoa/Entitlements.h (254831 => 254832)


--- trunk/Source/WTF/wtf/cocoa/Entitlements.h	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/WTF/wtf/cocoa/Entitlements.h	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2018 Apple Inc. All rights reserved.
+ * Copyright (C) 2018-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -23,6 +23,8 @@
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#pragma once
+
 #if PLATFORM(COCOA)
 
 #include <wtf/spi/darwin/XPCSPI.h>

Modified: trunk/Source/WTF/wtf/win/PathWalker.h (254831 => 254832)


--- trunk/Source/WTF/wtf/win/PathWalker.h	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/WTF/wtf/win/PathWalker.h	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2018 Apple Inc. All rights reserved.
+ * Copyright (C) 2011-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -23,6 +23,8 @@
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#pragma once
+
 #include <Windows.h>
 #include <wtf/Forward.h>
 #include <wtf/Noncopyable.h>

Modified: trunk/Source/bmalloc/ChangeLog (254831 => 254832)


--- trunk/Source/bmalloc/ChangeLog	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/bmalloc/ChangeLog	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,3 +1,13 @@
+2020-01-20  David Kilzer  <[email protected]>
+
+        Fix missing header guards and clean up empty files in bmalloc, WTF, _javascript_Core
+        <https://webkit.org/b/206481>
+
+        Reviewed by Darin Adler.
+
+        * bmalloc/PerThread.cpp: Remove empty file.
+        * bmalloc/ScopeExit.h: Add #pragma once.
+
 2020-01-17  Basuke Suzuki  <[email protected]>
 
         [bmalloc] Define alias for std::lock_guard and std::unique_lock for better readability

Deleted: trunk/Source/bmalloc/bmalloc/PerThread.cpp ( => )


Modified: trunk/Source/bmalloc/bmalloc/ScopeExit.h
===================================================================
--- trunk/Source/bmalloc/bmalloc/ScopeExit.h	2020-01-20 18:07:34 UTC (rev 254831)
+++ trunk/Source/bmalloc/bmalloc/ScopeExit.h	2020-01-20 20:17:41 UTC (rev 254832)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Apple Inc. All rights reserved.
+ * Copyright (C) 2016-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -23,6 +23,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  */
 
+#pragma once
+
 #include <type_traits>
 #include <utility>
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to