hare

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

commit d0c9cad01e32fb987979e3560ba38aefc3e95043
parent 523d52ea909f59a662b64b79e168d0dd5c390cc9
Author: Byron Torres <b@torresjrjr.com>
Date:   Tue, 24 May 2022 04:00:18 +0100

time::chrono: purge unused code

Signed-off-by: Byron Torres <b@torresjrjr.com>

Diffstat:
Mtime/chrono/tzdb.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/time/chrono/tzdb.ha b/time/chrono/tzdb.ha @@ -181,7 +181,7 @@ fn parse_tzif(h: io::handle, tz: *timezone) (void | invalidtzif | io::error) = { if (buf1[0] != 0x0A) { // '\n' newline return invalidtzif; }; - for (let start = true; true; start = false) { + for (true) { mustread(h, buf1)?; if (buf1[0] == 0x0A) { // '\n' newline break;