oh foo, I didn't mean to include this in the prev commit
This commit is contained in:
parent
5c960601aa
commit
256b86b948
1 changed files with 8 additions and 0 deletions
|
@ -8,3 +8,11 @@
|
||||||
{-# LANGUAGE CPP #-}
|
{-# LANGUAGE CPP #-}
|
||||||
|
|
||||||
module Utility.URI where
|
module Utility.URI where
|
||||||
|
|
||||||
|
-- Old versions of network lacked an Ord for URI
|
||||||
|
#if ! MIN_VERSION_network(2,4,0)
|
||||||
|
import Network.URI
|
||||||
|
|
||||||
|
instance Ord URI where
|
||||||
|
a `compare` b = show a `compare` show b
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue