Skip to content

Commit

Permalink
StylishHaskell may destroy CPPs
Browse files Browse the repository at this point in the history
  • Loading branch information
fmthoma committed Aug 13, 2017
1 parent 2c0e4a6 commit b1926d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Text/Trifecta/Util/IntervalMap.hs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ module Text.Trifecta.Util.IntervalMap
import Control.Applicative hiding (empty)
import Data.Foldable (Foldable (foldMap))
#endif
import Control.Lens hiding ((:<), (<|), (|>))
#if MIN_VERSION_lens(4,13,0) && __GLASGOW_HASKELL__ >= 710
import Control.Lens hiding ((:<), (<|), (|>))
#else
import Control.Lens hiding ((<|), (|>))
#endif
import Data.FingerTree
(FingerTree, Measured (..), ViewL (..), (<|), (><))
import qualified Data.FingerTree as FT
Expand Down

0 comments on commit b1926d3

Please sign in to comment.