diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-12-02 15:02:17 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-12-02 15:02:17 -0500 |
| commit | ad214c7aa00fc82b243eb38061f41588a0c58867 (patch) | |
| tree | ea2273fa1d318a167c15633d94d8e8a7fed1bc7d /lib/std/event/loop.zig | |
| parent | dcbd5ad1553c5994353de47babc0e07e02153bd8 (diff) | |
| download | zig-ad214c7aa00fc82b243eb38061f41588a0c58867.tar.gz zig-ad214c7aa00fc82b243eb38061f41588a0c58867.zip | |
bring your own OS layer in the std lib
closes #3784
Diffstat (limited to 'lib/std/event/loop.zig')
| -rw-r--r-- | lib/std/event/loop.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/event/loop.zig b/lib/std/event/loop.zig index 03478f65d5..3a6cced79b 100644 --- a/lib/std/event/loop.zig +++ b/lib/std/event/loop.zig @@ -61,7 +61,7 @@ pub const Loop = struct { base: ResumeNode, completion_key: usize, }, - else => @compileError("unsupported OS"), + else => struct {}, }; const KEventFd = struct { |
