hare

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

commit 765149b156d6cc8f79f1ce5e0053b66f35c335e2
parent 19de69ccde3d4aa9cee1df46459cdcdd7ddb3080
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri, 11 Mar 2022 18:35:06 -0500

Remove unnecessary void returns

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mcmd/haredoc/tty.ha | 1-
Mhare/unit/scan.ha | 1-
2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/cmd/haredoc/tty.ha b/cmd/haredoc/tty.ha @@ -89,7 +89,6 @@ fn details_tty(ctx: *context, decl: ast::decl) (void | error) = { unparse_tty(ctx.out, decl)?; fmt::fprintln(ctx.out)?; - return; }; // Forked from [[hare::unparse]] diff --git a/hare/unit/scan.ha b/hare/unit/scan.ha @@ -66,5 +66,4 @@ fn scan_func( _type = fntype, ... }); - return; };