fix: by convention deinit() should not take pointers to self
This commit is contained in:
@@ -21,7 +21,7 @@ pub const Scheduler = struct {
|
||||
return scheduler;
|
||||
}
|
||||
|
||||
pub fn deinit(self: *@This()) void {
|
||||
pub fn deinit(self: @This()) void {
|
||||
self.queue.deinit();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user