This PR fixes the build with the latest Idris (ebbae42c8 and later) in a way that is still compatible with older versions of Idris.
In ebbae42c8, Idris gains Data.List.uncons' which clashes with Server.Utils.uncons' in a way that confuses the elaborator. I fixed this by qualifying the call to uncons'. If we only want to work with ebbae42c8 and newer, a cleaner solution might be to remove Server.Utils.uncons'.
This PR fixes the build with the latest Idris (ebbae42c8 and later) in a way that is still compatible with older versions of Idris.
In ebbae42c8, Idris gains
Data.List.uncons'
which clashes withServer.Utils.uncons'
in a way that confuses the elaborator. I fixed this by qualifying the call touncons'
. If we only want to work with ebbae42c8 and newer, a cleaner solution might be to removeServer.Utils.uncons'
.