aboutsummaryrefslogtreecommitdiff
path: root/src-self-hosted/compilation.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-06-10 09:54:03 -0400
committerGitHub <noreply@github.com>2019-06-10 09:54:03 -0400
commit12b2950bf294b3cfda0616b2e71b739cbda684d9 (patch)
tree25a5a2da7a6527cf61096e236baf26c58d1ccc05 /src-self-hosted/compilation.zig
parentb7811d32690a9f3b4912635e16e6aa5ace25362c (diff)
parentb0648bfbd31cad73e00ee72b430dcf2c2907e08f (diff)
downloadzig-12b2950bf294b3cfda0616b2e71b739cbda684d9.tar.gz
zig-12b2950bf294b3cfda0616b2e71b739cbda684d9.zip
Merge pull request #2424 from daurnimator/single-linked-list
Add SinglyLinkedList
Diffstat (limited to 'src-self-hosted/compilation.zig')
-rw-r--r--src-self-hosted/compilation.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-self-hosted/compilation.zig b/src-self-hosted/compilation.zig
index 5171b80ddc..bd20442d4b 100644
--- a/src-self-hosted/compilation.zig
+++ b/src-self-hosted/compilation.zig
@@ -160,7 +160,7 @@ pub const Compilation = struct {
/// it uses an optional pointer so that tombstone removals are possible
fn_link_set: event.Locked(FnLinkSet),
- pub const FnLinkSet = std.LinkedList(?*Value.Fn);
+ pub const FnLinkSet = std.TailQueue(?*Value.Fn);
windows_subsystem_windows: bool,
windows_subsystem_console: bool,