aboutsummaryrefslogtreecommitdiff
path: root/std/atomic
diff options
context:
space:
mode:
Diffstat (limited to 'std/atomic')
-rw-r--r--std/atomic/int.zig2
-rw-r--r--std/atomic/queue.zig4
-rw-r--r--std/atomic/stack.zig2
3 files changed, 4 insertions, 4 deletions
diff --git a/std/atomic/int.zig b/std/atomic/int.zig
index 4103d52719..6e07ef571a 100644
--- a/std/atomic/int.zig
+++ b/std/atomic/int.zig
@@ -6,7 +6,7 @@ pub fn Int(comptime T: type) type {
return struct {
unprotected_value: T,
- pub const Self = this;
+ pub const Self = @This();
pub fn init(init_val: T) Self {
return Self{ .unprotected_value = init_val };
diff --git a/std/atomic/queue.zig b/std/atomic/queue.zig
index 6948af43ba..eea77d5534 100644
--- a/std/atomic/queue.zig
+++ b/std/atomic/queue.zig
@@ -12,7 +12,7 @@ pub fn Queue(comptime T: type) type {
tail: ?*Node,
mutex: std.Mutex,
- pub const Self = this;
+ pub const Self = @This();
pub const Node = std.LinkedList(T).Node;
pub fn init() Self {
@@ -114,7 +114,7 @@ pub fn Queue(comptime T: type) type {
fn dumpRecursive(optional_node: ?*Node, indent: usize) void {
var stderr_file = std.io.getStdErr() catch return;
- const stderr = &std.io.FileOutStream.init(&stderr_file).stream;
+ const stderr = &std.io.FileOutStream.init(stderr_file).stream;
stderr.writeByteNTimes(' ', indent) catch return;
if (optional_node) |node| {
std.debug.warn("0x{x}={}\n", @ptrToInt(node), node.data);
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,