| author | |
| committer | |
| log | 89310dad561357b687316bc849594485d55a47ef |
| tree | a737bb1cd3af6c2d5c82c05cf832363a59b50d1a |
| parent | b9ef36094c9ffc522def982c98abcb97cd067761 |
| parent | 29d7b5a80c9faf640c3db0de14cd229e90b2d8c3 |
| signature |
2 files changed, 2 insertions(+), 2 deletions(-)
lib/std/event/future.zig+1-1| ... | ... | @@ -26,7 +26,7 @@ pub fn Future(comptime T: type) type { |
| 26 | 26 | pub fn init() Self { |
| 27 | 27 | return Self{ |
| 28 | 28 | .lock = Lock.initLocked(), |
| 29 | .available = 0, | |
| 29 | .available = .NotStarted, | |
| 30 | 30 | .data = undefined, |
| 31 | 31 | }; |
| 32 | 32 | } |
src/analyze.cpp+1-1| ... | ... | @@ -1,4 +1,4 @@ |
| 1 | /* | |
| 1 | /* | |
| 2 | 2 | * Copyright (c) 2015 Andrew Kelley |
| 3 | 3 | * |
| 4 | 4 | * This file is part of zig, which is MIT licensed. |