Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update files to be ghc-7.10.1 compliant #136

Merged
merged 1 commit into from
Apr 24, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions mylittlepony.cabal
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
-- Initial mylittlepony.cabal generated by cabal init. For further
-- Initial mylittlepony.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/

name: mylittlepony
version: 0.1.0.0
-- synopsis:
-- description:
-- synopsis:
-- description:
homepage: http://upscale-project.eu/
-- license:
-- license:
-- license-file: LICENSE
author: parapluu
maintainer: [email protected]
Expand All @@ -29,14 +29,14 @@ executable encorec
, FunctionalDependencies
, CPP
, ScopedTypeVariables
build-depends: base >=4.7 && <4.8
build-depends: base >=4.7 && <=4.8.0.0
, pretty >=1.1 && <1.2
, mtl ==2.2.*
, parsec >=3.1.7 && <3.2
, directory >=1.2 && <1.3
, process >=1.2 && <1.3
, unix >=2.7 && <2.8
, text >=1.1
, text >=1.1
, template-haskell
, MissingH
hs-source-dirs: src/back src/front src/ir src/opt src/parser src/types
Expand Down
2 changes: 1 addition & 1 deletion src/back/CodeGen/Closure.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, NamedFieldPuns #-}
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, NamedFieldPuns, FlexibleContexts #-}

{-| Makes @Closure@ (see "AST") an instance of @Translatable@ (see "CodeGen.Typeclasses") -}
module CodeGen.Closure where
Expand Down
2 changes: 1 addition & 1 deletion src/back/CodeGen/Expr.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, GADTs, NamedFieldPuns #-}
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, GADTs, NamedFieldPuns, FlexibleContexts #-}

{-| Makes @Expr@ an instance of @Translatable@ (see "CodeGen.Typeclasses") -}

Expand Down
2 changes: 1 addition & 1 deletion src/back/CodeGen/Function.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, NamedFieldPuns #-}
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, NamedFieldPuns, FlexibleContexts #-}

{-| Makes @Function@ (see "AST") an instance of @Translatable@ (see "CodeGen.Typeclasses") -}
module CodeGen.Function where
Expand Down
2 changes: 1 addition & 1 deletion src/back/CodeGen/Task.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, NamedFieldPuns #-}
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances, NamedFieldPuns, FlexibleContexts #-}

module CodeGen.Task where

Expand Down
2 changes: 1 addition & 1 deletion src/types/Typechecker/Typechecker.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE MultiParamTypeClasses, NamedFieldPuns #-}
{-# LANGUAGE MultiParamTypeClasses, NamedFieldPuns, FlexibleContexts #-}

{-|

Expand Down