You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
result 1.5 includes Stdlib.Result on 4.08+, which introduces many new identifiers.
The code needs to be changed the same way, whether adapting to result 1.5, or requiring OCaml 4.03+ and dropping result as a dependency, because, either way, on 4.08+, the new identifiers are brought into scope by the open.
The text was updated successfully, but these errors were encountered:
Would be nice to cut a release.
Just removing "Line 4: open Result" is enough to compile on 4.10, and it might be worth just requiring 4.03+ and dropping result as mentioned.
Are either of you interested in maintaining this library? (and its peers, tsdl-ttf and tsdl-mixer) I'm going to do some updates shortly, but I'd be happy to turn over maintenance to someone else with a more active interest in it.
Namely, this:
tsdl-image/src/tsdl_image.ml
Line 4 in 32eca2e
result
1.5include
sStdlib.Result
on 4.08+, which introduces many new identifiers.The code needs to be changed the same way, whether adapting to
result
1.5, or requiring OCaml 4.03+ and droppingresult
as a dependency, because, either way, on 4.08+, the new identifiers are brought into scope by theopen
.The text was updated successfully, but these errors were encountered: