mirror of
https://github.com/jtdaugherty/brick.git
synced 2024-12-29 08:55:13 +03:00
TailDemo: add missing imports for some GHC versions
This commit is contained in:
parent
500dcae65c
commit
d106dc1e72
@ -1,6 +1,12 @@
|
||||
{-# LANGUAGE OverloadedStrings #-}
|
||||
module Main where
|
||||
|
||||
#if !MIN_VERSION_base(4,8,0)
|
||||
import Control.Applicative ((<$>))
|
||||
#endif
|
||||
#if !(MIN_VERSION_base(4,11,0))
|
||||
import Data.Monoid ((<>))
|
||||
#endif
|
||||
import qualified Data.Text as T
|
||||
import Control.Monad (void)
|
||||
import Control.Concurrent
|
||||
|
Loading…
Reference in New Issue
Block a user