diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-06-11 16:43:59 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-06-11 16:43:59 -0400 |
commit | 9f6e26857bceb987fa708d2ef4f251969d36c10e (patch) | |
tree | 0a8149e2a3c61b5e2d99a899868e2cf1d6f923fa /Utility | |
parent | d00807c002eecf53efd1967416341a0bbf7ed2d3 (diff) |
oh foo, I didn't mean to include this in the prev commit
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/URI.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Utility/URI.hs b/Utility/URI.hs index 1e2129a47..e68fda58d 100644 --- a/Utility/URI.hs +++ b/Utility/URI.hs @@ -8,3 +8,11 @@ {-# LANGUAGE CPP #-} 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 |