Skip to content

Commit

Permalink
Import liftA2 from Control.Applicative instead of Prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
t-wallet committed Aug 29, 2024
1 parent c027864 commit 8e62080
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clash-prelude/src/Clash/Explicit/Signal/Delayed.hs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ module Clash.Explicit.Signal.Delayed
)
where

import Prelude ((.), ($), (<$>), id, Num(..), Maybe(..), fmap, liftA2)
import Prelude ((.), ($), (<$>), id, Num(..), Maybe(..), fmap)

import Control.Applicative (liftA2)
import Data.Coerce (coerce)
import Data.Kind (Type)
import Data.Type.Equality ((:~:)(Refl))
Expand Down

0 comments on commit 8e62080

Please sign in to comment.