Skip to content

Commit

Permalink
Merge pull request idris-lang#2495 from BlackBrane/master
Browse files Browse the repository at this point in the history
Remove spurious Data.Fin imports (now reexported by Vect)
  • Loading branch information
melted committed Aug 6, 2015
2 parents 6784f7a + afe9481 commit 030da05
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion libs/base/Data/HVect.idr
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module Data.HVect

import Data.Fin
import public Data.Vect

%access public
Expand Down
2 changes: 1 addition & 1 deletion libs/contrib/Control/Algebra.idr
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class RingWithUnity a => Field a where
inverseM : (x : a) -> Not (x = neutral) -> a

sum' : (Foldable t, Monoid a) => t a -> a
sum' = foldr (<+>) neutral
sum' = concat

product' : (Foldable t, RingWithUnity a) => t a -> a
product' = foldr (<.>) unity
Expand Down
1 change: 0 additions & 1 deletion libs/effects/Effect/Random.idr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module Effect.Random

import Effects
import Data.Vect
import Data.Fin

data Random : Effect where
getRandom : sig Random Integer Integer
Expand Down

0 comments on commit 030da05

Please sign in to comment.