oh foo, I didn't mean to include this in the prev commit

This commit is contained in:
Joey Hess 2015-06-11 16:43:59 -04:00
parent 5c960601aa
commit 256b86b948

View file

@ -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