hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 2310fc007fa714065f98c5fa302007c788475df7
parent 16a5a2c4bb87fd8e9b4efd7f6c187d032aec8902
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 14 May 2022 13:19:27 +0200

ioctlgen: update per regex changes

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mcmd/ioctlgen/main.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmd/ioctlgen/main.ha b/cmd/ioctlgen/main.ha @@ -47,8 +47,8 @@ export fn main() void = { case void => fmt::println(line)!; continue; - case let mg: []regex::matchgroup => - yield mg; + case let cap: []regex::capture => + yield cap; }; defer free(groups);