Skip to content

Commit

Permalink
Fixing compile failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Gill committed Jan 20, 2016
1 parent 65a7550 commit 1e40d25
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/HERMIT/GHCI/Client.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE RankNTypes #-}
module HERMIT.GHCI.Client where

import Control.Lens ((^.))
Expand Down Expand Up @@ -31,7 +32,7 @@ session :: JSONRPC.Session
session = JSONRPC.session
$ (if debug
then traceSessionAPI "HERMIT-remote-json"
else id :: (forall a . f a -> g a) -> (forall a . f a ~> g a))
else id :: (forall a . f a -> g a) -> (forall a . f a -> g a))
$ sendr
where
sendr :: SessionAPI a -> IO a
Expand Down

0 comments on commit 1e40d25

Please sign in to comment.