Skip to content

Commit

Permalink
[ fix ] remove most recent error
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-hoeck committed Nov 30, 2023
1 parent 2c0495f commit bd6e284
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/System/UV/Error.idr
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ data UVError : Type where
UV_EFTYPE : UVError
UV_EILSEQ : UVError
UV_ESOCKTNOSUPPORT : UVError
UV_EUNATCH : UVError

%runElab derive "UVError" [Show,Eq,Finite]

Expand Down Expand Up @@ -185,7 +184,6 @@ toCode UV_ENOTTY = uv_enotty
toCode UV_EFTYPE = uv_eftype
toCode UV_EILSEQ = uv_eilseq
toCode UV_ESOCKTNOSUPPORT = uv_esocktnosupport
toCode UV_EUNATCH = uv_eunatch

export
Interpolation UVError where
Expand Down
3 changes: 0 additions & 3 deletions src/System/UV/Raw/Error.idr
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,6 @@ uv_eilseq : Int32
export %foreign (idris_uv "uv_esocktnosupport")
uv_esocktnosupport : Int32

export %foreign (idris_uv "uv_eunatch")
uv_eunatch : Int32

%foreign (idris_uv "uv_strerror")
prim__uv_strerror : Int32 -> Ptr Char

Expand Down
1 change: 0 additions & 1 deletion support/idris2-uv.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,4 +302,3 @@ int uv_enotty(){ return UV_ENOTTY; }
int uv_eftype(){ return UV_EFTYPE; }
int uv_eilseq(){ return UV_EILSEQ; }
int uv_esocktnosupport(){ return UV_ESOCKTNOSUPPORT; }
int uv_eunatch(){ return UV_EUNATCH; }
1 change: 0 additions & 1 deletion support/idris2-uv.h
Original file line number Diff line number Diff line change
Expand Up @@ -298,4 +298,3 @@ int uv_enotty();
int uv_eftype();
int uv_eilseq();
int uv_esocktnosupport();
int uv_eunatch();

0 comments on commit bd6e284

Please sign in to comment.