declare required extensions

and remove default extension pragmas (OverloadedStrings)
This commit is contained in:
Adam C. Baker
2014-11-05 00:32:10 -08:00
parent 8c6b34aaf2
commit 74855db87b
19 changed files with 6 additions and 29 deletions
-2
View File
@@ -1,5 +1,3 @@
{-# LANGUAGE OverloadedStrings #-}
-- {{{ Imports
module Dbapi where
-2
View File
@@ -1,5 +1,3 @@
{-# LANGUAGE OverloadedStrings #-}
module Main where
import Paths_dbapi (version)
-1
View File
@@ -1,4 +1,3 @@
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Middleware where
-3
View File
@@ -1,7 +1,4 @@
{-# LANGUAGE OverloadedStrings #-}
-- {{{ Imports
module PgQuery (
getRows
, insert
-2
View File
@@ -1,5 +1,3 @@
{-# LANGUAGE OverloadedStrings #-}
module PgStructure where
import Data.Functor ( (<$>) )
-2
View File
@@ -1,5 +1,3 @@
{-# LANGUAGE OverloadedStrings #-}
module RangeQuery where
import Control.Applicative
-1
View File
@@ -1,5 +1,4 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Types where
import Database.HDBC (toSql, iToSql, SqlValue(..))