From 250a4dcfb29950cfd2e77abf7e57c44cab188ba4 Mon Sep 17 00:00:00 2001 From: Diogo Biazus Date: Tue, 20 Oct 2015 19:51:25 -0400 Subject: [PATCH] Adds back import to make GHC 7.8 happy --- src/PostgREST/Auth.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/PostgREST/Auth.hs b/src/PostgREST/Auth.hs index 8ddfa1dea..daa75b4af 100644 --- a/src/PostgREST/Auth.hs +++ b/src/PostgREST/Auth.hs @@ -17,6 +17,9 @@ module PostgREST.Auth ( , tokenJWT ) where +--line needed for ghc 7.8 +import Data.Functor ((<$>)) + import Data.Aeson (Value (..), Object) import Data.Aeson.Types (emptyObject, emptyArray) import Data.Vector as V (null, head)