aboutsummaryrefslogtreecommitdiff
path: root/src/ThreadPool.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-03-11 17:09:23 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-03-11 19:38:07 -0700
commit2ee3cc453c4cefa3519f6a6238d4721364d829ae (patch)
tree1b9a4ecf5efec01337a2a4ed094cba55244b5e44 /src/ThreadPool.zig
parent6f986298c6cc58d2d86e9790b11bad5ce36085ad (diff)
downloadzig-2ee3cc453c4cefa3519f6a6238d4721364d829ae.tar.gz
zig-2ee3cc453c4cefa3519f6a6238d4721364d829ae.zip
stage2: remove SPDX license header comments
These were missed in d29871977f97b50fe5e3f16cd9c68ebeba02a562.
Diffstat (limited to 'src/ThreadPool.zig')
-rw-r--r--src/ThreadPool.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ThreadPool.zig b/src/ThreadPool.zig
index 813d67db66..ac95def319 100644
--- 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();