aboutsummaryrefslogtreecommitdiff
path: root/std/atomic/stack.zig
diff options
context:
space:
mode:
Diffstat (limited to 'std/atomic/stack.zig')
-rw-r--r--std/atomic/stack.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/atomic/stack.zig b/std/atomic/stack.zig
index 16d5c9503b..71896c66df 100644
--- a/std/atomic/stack.zig
+++ b/std/atomic/stack.zig
@@ -9,7 +9,7 @@ pub fn Stack(comptime T: type) type {
root: ?*Node,
lock: u8,
- pub const Self = this;
+ pub const Self = @This();
pub const Node = struct {
next: ?*Node,