hare

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

commit 7e6bf7ee53709fe94d10c0cd78469b13c5e3761e
parent 95d6615246f3516dba5aa034be42d5f60eb52517
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 12 Nov 2021 10:14:35 +0100

io: expand errors::unsupported into io::error

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mio/types.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/io/types.ha b/io/types.ha @@ -5,7 +5,7 @@ use errors; export type underread = !void; // Any error which may be returned from an I/O function. -export type error = !(errors::error | underread); +export type error = !(...errors::error | underread); // Indicates an end-of-file condition. export type EOF = void;