diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2021-06-24 20:20:26 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2021-06-24 20:21:07 +0200 |
| commit | 505639432efc22ee8c85c4a9b34e111acbe896d4 (patch) | |
| tree | 76a9193852594d03c1447e825841e4894cf33f4b | |
| parent | 3392b21aa8982c1a9d5bf25307830a4294e5ae4c (diff) | |
| download | river-505639432efc22ee8c85c4a9b34e111acbe896d4.tar.gz river-505639432efc22ee8c85c4a9b34e111acbe896d4.tar.xz | |
Revert "build: assert wlroots version at comptime"
zig-wlroots now has this assert built in
This reverts commit 3392b21aa8982c1a9d5bf25307830a4294e5ae4c.
| m--------- | deps/zig-wlroots | 0 | ||||
| -rw-r--r-- | river/main.zig | 8 |
2 files changed, 0 insertions, 8 deletions
diff --git a/deps/zig-wlroots b/deps/zig-wlroots -Subproject b270171f7bfe19eb15c1bb2b20121dd9e7ac32f +Subproject 4c4e598445a7c4143c5d3650d54c9ffa415119d diff --git a/river/main.zig b/river/main.zig index 3a2d5ee..874b518 100644 --- a/river/main.zig +++ b/river/main.zig @@ -16,17 +16,9 @@ // along with this program. If not, see <https://www.gnu.org/licenses/>. const std = @import("std"); -const assert = std.debug.assert; const os = std.os; - const wlr = @import("wlroots"); -// River requires wlroots 0.14 -comptime { - assert(wlr.version.major == 0); - assert(wlr.version.minor == 14); -} - const build_options = @import("build_options"); const c = @import("c.zig"); |
