Title: [254787] trunk/Source/_javascript_Core
- Revision
- 254787
- Author
- [email protected]
- Date
- 2020-01-17 18:49:33 -0800 (Fri, 17 Jan 2020)
Log Message
[JSC] Add missing header guards
<https://webkit.org/b/206448>
Reviewed by Mark Lam.
* heap/IsoHeapCellType.h:
* wasm/WasmFaultSignalHandler.h:
- Add #pragma once header guard.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (254786 => 254787)
--- trunk/Source/_javascript_Core/ChangeLog 2020-01-18 02:22:51 UTC (rev 254786)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-01-18 02:49:33 UTC (rev 254787)
@@ -1,3 +1,14 @@
+2020-01-17 David Kilzer <[email protected]>
+
+ [JSC] Add missing header guards
+ <https://webkit.org/b/206448>
+
+ Reviewed by Mark Lam.
+
+ * heap/IsoHeapCellType.h:
+ * wasm/WasmFaultSignalHandler.h:
+ - Add #pragma once header guard.
+
2020-01-17 Mark Lam <[email protected]>
JSModuleLoader's printableModuleKey() should never throw.
Modified: trunk/Source/_javascript_Core/heap/IsoHeapCellType.h (254786 => 254787)
--- trunk/Source/_javascript_Core/heap/IsoHeapCellType.h 2020-01-18 02:22:51 UTC (rev 254786)
+++ trunk/Source/_javascript_Core/heap/IsoHeapCellType.h 2020-01-18 02:49:33 UTC (rev 254787)
@@ -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"
Modified: trunk/Source/_javascript_Core/wasm/WasmFaultSignalHandler.h (254786 => 254787)
--- trunk/Source/_javascript_Core/wasm/WasmFaultSignalHandler.h 2020-01-18 02:22:51 UTC (rev 254786)
+++ trunk/Source/_javascript_Core/wasm/WasmFaultSignalHandler.h 2020-01-18 02:49:33 UTC (rev 254787)
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2017 Apple Inc. All rights reserved.
+ * Copyright (C) 2017-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)
namespace JSC {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes