hare

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

commit a7f8a6f22db5acfb24887256da0d0a3dce2bf5af
parent 7e8af1e3d8c12d584016d1498fc4d26978e7fd54
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sun,  1 Dec 2024 20:23:23 -0500

regex: remove unused charclass type

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

Diffstat:
Mregex/regex.ha | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/regex/regex.ha b/regex/regex.ha @@ -65,10 +65,6 @@ type thread = struct { type newmatch = void; -export type charclass = enum { - ALNUM, ALPHA, BLANK, CNTRL, DIGIT, GRAPH, LOWER, PRINT, PUNCT, SPACE, - UPPER, XDIGIT, -}; export type charset = [](charset_lit_item | charset_range_item | charset_class_item), charset_lit_item = rune,