Use comptime for fully declarative LV2 and Custom commands #14

Merged
luna merged 69 commits from declarative-commands into master 2020-06-02 21:37:47 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 6d8614e678 - Show all commits

View File

@ -222,9 +222,9 @@ pub fn doRepl(allocator: *std.mem.Allocator, args_it: var) !void {
// taking address is fine, because runqs_cmd lives in the lifetime
// of this function.
try cmds.append(&runqs_cmd.base);
try cmds_parsed.append(&runqs_cmd.base);
try runner_clone.runCommands(cmds, true);
try runner_clone.runCommands(cmds_parsed, true);
_ = try stdout.write("\n");
}
}