motiejus/zig

fork of https://codeberg.org/ziglang/zig
git clone https://git.jakstys.lt/motiejus/zig.git
Log | Tree | Refs | README | LICENSE

commit 2ee3cc453c4cefa3519f6a6238d4721364d829ae (tree)
parent 6f986298c6cc58d2d86e9790b11bad5ce36085ad
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri, 11 Mar 2022 17:09:23 -0700

stage2: remove SPDX license header comments

These were missed in d29871977f97b50fe5e3f16cd9c68ebeba02a562.

Diffstat:
Msrc/ThreadPool.zig | 5-----
Msrc/WaitGroup.zig | 5-----
Msrc/translate_c/ast.zig | 5-----
3 files changed, 0 insertions(+), 15 deletions(-)

diff --git a/src/ThreadPool.zig b/src/ThreadPool.zig @@ -1,8 +1,3 @@ -// SPDX-License-Identifier: MIT -// Copyright (c) 2015-2020 Zig Contributors -// This file is part of [zig](https://ziglang.org/), which is MIT licensed. -// The MIT license requires this copyright notice to be included in all copies -// and substantial portions of the software. const std = @import("std"); const builtin = @import("builtin"); const ThreadPool = @This(); diff --git a/src/WaitGroup.zig b/src/WaitGroup.zig @@ -1,8 +1,3 @@ -// SPDX-License-Identifier: MIT -// Copyright (c) 2015-2020 Zig Contributors -// This file is part of [zig](https://ziglang.org/), which is MIT licensed. -// The MIT license requires this copyright notice to be included in all copies -// and substantial portions of the software. const std = @import("std"); const WaitGroup = @This(); diff --git a/src/translate_c/ast.zig b/src/translate_c/ast.zig @@ -1,8 +1,3 @@ -// SPDX-License-Identifier: MIT -// Copyright (c) 2021 Zig Contributors -// This file is part of [zig](https://ziglang.org/), which is MIT licensed. -// The MIT license requires this copyright notice to be included in all copies -// and substantial portions of the software. const std = @import("std"); const Type = @import("../type.zig").Type; const Allocator = std.mem.Allocator;