Skip to content

Commit c29902d

Browse files
committed
globally: hide Prelude.<>, where appropriate
1 parent cc25530 commit c29902d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Data/Text/Buildable.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ import Foreign.Ptr (IntPtr, WordPtr, Ptr, ptrToWordPtr)
3737
import qualified Data.Double.Conversion.Text as C
3838
import qualified Data.Text as ST
3939
import qualified Data.Text.Lazy as LT
40+
import Prelude hiding ((<>))
4041

4142
-- | The class of types that can be rendered to a 'Builder'.
4243
class Buildable p where

Data/Text/Format.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import Data.Text.Format.Params (Params(..))
4141
import Data.Text.Format.Types.Internal (Format(..), Only(..), Shown(..))
4242
import Data.Text.Format.Types.Internal (Hex(..))
4343
import Data.Text.Lazy.Builder
44-
import Prelude hiding (exp, print)
44+
import Prelude hiding (exp, print, (<>))
4545
import System.IO (Handle)
4646
import qualified Data.Double.Conversion.Text as C
4747
import qualified Data.Text as ST

Data/Text/Format/Int.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import Data.Word (Word, Word8, Word16, Word32, Word64)
2424
import GHC.Base (quotInt, remInt)
2525
import GHC.Num (quotRemInteger)
2626
import GHC.Types (Int(..))
27+
import Prelude hiding ((<>))
2728

2829
#ifdef __GLASGOW_HASKELL__
2930
# if __GLASGOW_HASKELL__ < 611

0 commit comments

Comments
 (0)