aboutsummaryrefslogtreecommitdiff
path: root/Utility/URI.hs
blob: 2401596093d990b47283e38ce64d6da7dbb0fb5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{- Network.URI
 -
 - Copyright 2014 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

{-# LANGUAGE CPP #-}

module Utility.URI where

-- Old versions of network lacked an Ord for URI
#ifdef VERSION_network
#if ! MIN_VERSION_network(2,4,0)
import Network.URI

instance Ord URI where
	a `compare` b = show a `compare` show b
#endif
#endif