Skip to content

Commit ec07406

Browse files
author
Mistral Contrastin
committed
Make compatible with GHC 8.4.1
There was ambiguity with (<>) both in a dependency and in our pretty printing functionality.
1 parent b84f773 commit ec07406

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fortran-src.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ executable fortran-src
2626
mtl >= 2.2 && < 3,
2727
array >= 0.5 && < 0.6,
2828
uniplate >= 1.6 && < 2,
29-
GenericPretty >= 1.2 && < 2,
29+
GenericPretty >= 1.2.2 && < 2,
3030
pretty >= 1.1 && < 2,
3131
containers >= 0.5 && < 0.6,
3232
text >= 1.2 && < 2,

src/Language/Fortran/PrettyPrint.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module Language.Fortran.PrettyPrint where
88
import Data.Maybe (isJust, isNothing)
99
import Data.List (foldl')
1010

11-
import Prelude hiding (EQ,LT,GT)
11+
import Prelude hiding (EQ,LT,GT,(<>))
1212

1313
import Language.Fortran.AST
1414
import Language.Fortran.ParserMonad

0 commit comments

Comments
 (0)