diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:40:05 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:40:05 +0200 |
| commit | 96f2ff793c7606c8979d45b62b827c1cc50667d1 (patch) | |
| tree | 6746c09489a28d0f08c35b279503f40ab92d5c0e /src/layer_surface.zig | |
| parent | 7ddcebbbab8479ad80574db40aee8e894e411b2e (diff) | |
| download | river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.gz river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.xz | |
Make Output a toplevel struct
Diffstat (limited to 'src/layer_surface.zig')
| -rw-r--r-- | src/layer_surface.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layer_surface.zig b/src/layer_surface.zig index 1acd321..5c892d1 100644 --- a/src/layer_surface.zig +++ b/src/layer_surface.zig @@ -3,7 +3,7 @@ const c = @import("c.zig"); const Box = @import("box.zig"); const Log = @import("log.zig").Log; -const Output = @import("output.zig").Output; +const Output = @import("output.zig"); pub const LayerSurface = struct { const Self = @This(); |
