Changeset 254787 in webkit


Ignore:
Timestamp:
Jan 17, 2020 6:49:33 PM (4 years ago)
Author:
ddkilzer@apple.com
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.
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r254783 r254787  
     12020-01-17  David Kilzer  <ddkilzer@apple.com>
     2
     3        [JSC] Add missing header guards
     4        <https://webkit.org/b/206448>
     5
     6        Reviewed by Mark Lam.
     7
     8        * heap/IsoHeapCellType.h:
     9        * wasm/WasmFaultSignalHandler.h:
     10        - Add #pragma once header guard.
     11
    1122020-01-17  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/JavaScriptCore/heap/IsoHeapCellType.h

    r253443 r254787  
    11/*
    2  * Copyright (C) 2019 Apple Inc. All rights reserved.
     2 * Copyright (C) 2019-2020 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    2323 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
     25
     26#pragma once
    2527
    2628#include "HeapCellType.h"
  • trunk/Source/JavaScriptCore/wasm/WasmFaultSignalHandler.h

    r248187 r254787  
    11/*
    2  * Copyright (C) 2017 Apple Inc. All rights reserved.
     2 * Copyright (C) 2017-2020 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    2424 */
    2525
     26#pragma once
     27
    2628#if ENABLE(WEBASSEMBLY)
    2729
Note: See TracChangeset for help on using the changeset viewer.