Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions examples/lens-examples.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ library
Turtle
build-depends:
aeson,
base >= 4.5 && < 5,
base >= 4.9 && < 5,
bytestring >= 0.9.1.10 && < 0.13,
data-default-class,
ghc-prim,
lens
default-language: Haskell2010
ghc-options: -Wall
Expand All @@ -58,7 +57,7 @@ executable lens-pong
buildable: False

build-depends:
base >= 4.5 && < 5,
base >= 4.9 && < 5,
containers >= 0.4 && < 0.9,
gloss >= 1.12 && < 1.14,
lens,
Expand Down
1 change: 0 additions & 1 deletion lens.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ library
exceptions >= 0.8.2.1 && < 1,
filepath >= 1.2.0.0 && < 1.6,
free >= 5.1.5 && < 6,
ghc-prim,
hashable >= 1.2.7.0 && < 1.6,
indexed-traversable >= 0.1 && < 0.2,
indexed-traversable-instances >= 0.1 && < 0.2,
Expand Down
2 changes: 1 addition & 1 deletion src/Control/Lens/Traversal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ import Data.Reflection
import Data.Semigroup.Traversable
import Data.Semigroup.Bitraversable
import Data.Tuple (swap)
import GHC.Magic (inline)
import GHC.Exts (inline)

-- $setup
-- >>> :set -XNoOverloadedStrings -XFlexibleContexts
Expand Down