hare

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

commit 9a17974f1c648d2ad9365e0009306144a83a0b4d
parent a05c0cd64e6d34ff64989842a9a8b79b3ad9f836
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon,  5 Apr 2021 19:37:54 -0400

hare::ast: move TODO comment out of doc text

Diffstat:
Mhare/ast/expr.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hare/ast/expr.ha b/hare/ast/expr.ha @@ -222,8 +222,8 @@ export type switch_expr = struct { }; // A unary operator -// TODO: Should this be rehomed with the checked AST? export type unarithm_op = enum { + // TODO: Should this be rehomed with the checked AST? ADDR, // & BNOT, // ~ DEREF, // *