diff options
author | Ori Bernstein <ori@eigenstate.org> | 2016-05-15 23:19:13 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2016-05-16 21:22:05 -0700 |
commit | 286b40b5cc3bf80fdd2d9345dd3ea6c1abb06744 (patch) | |
tree | 9cc7f8b5f10a03dd4f41ba4074e2c9b7806e49f5 /lib/regex | |
parent | 08871fe6b8e6161e988e1aa52a59da792273ab4a (diff) | |
download | mc-286b40b5cc3bf80fdd2d9345dd3ea6c1abb06744.tar.gz |
Remove outdated comments.
Diffstat (limited to 'lib/regex')
-rw-r--r-- | lib/regex/interp.myr | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/regex/interp.myr b/lib/regex/interp.myr index 4458370..15c71f8 100644 --- a/lib/regex/interp.myr +++ b/lib/regex/interp.myr @@ -6,11 +6,6 @@ pkg regex = const exec : (re : regex#, str : byte[:] -> std.option(byte[:][:])) const search : (re : regex#, str : byte[:] -> std.option(byte[:][:])) const matchfree : (pat : byte[:][:] -> void) - /* - FIXME: implement. This should scan for a possible start char in the - regex and use that to optimize. - const search : (re : regex#, str : byte[:] -> std.option(byte[:][:])) - */ ;; /* Ugly: for performance. std.option() should be used instead when unions get faster. */ |