Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Make compile on 7.2
  • Loading branch information
ingydotnet committed Oct 20, 2011
1 parent 501306f commit d4c5c2a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Pugs/src/Pugs/AST.hs
@@ -1,5 +1,5 @@
{-# OPTIONS_GHC -funbox-strict-fields #-}
{-# LANGUAGE CPP, GADTs, ScopedTypeVariables, TypeSynonymInstances, MultiParamTypeClasses, DeriveDataTypeable, FlexibleContexts, PatternGuards #-}
{-# LANGUAGE CPP, GADTs, ScopedTypeVariables, TypeSynonymInstances, MultiParamTypeClasses, DeriveDataTypeable, FlexibleContexts, PatternGuards, FlexibleInstances #-}

{-|
Abstract syntax tree.
Expand Down
2 changes: 1 addition & 1 deletion Pugs/src/Pugs/AST.hs-boot
@@ -1,5 +1,5 @@
{-# OPTIONS_GHC -funbox-strict-fields #-}
{-# LANGUAGE MultiParamTypeClasses, FlexibleContexts, TypeSynonymInstances #-}
{-# LANGUAGE MultiParamTypeClasses, FlexibleContexts, TypeSynonymInstances, FlexibleInstances #-}
module Pugs.AST where
import Pugs.Internals
import Pugs.Types
Expand Down
2 changes: 1 addition & 1 deletion Pugs/src/Pugs/AST/Functions.hs
@@ -1,4 +1,4 @@
{-# LANGUAGE TypeSynonymInstances, MultiParamTypeClasses #-}
{-# LANGUAGE TypeSynonymInstances, MultiParamTypeClasses, FlexibleInstances #-}
module Pugs.AST.Functions where
import Pugs.Internals
import Pugs.Types
Expand Down
2 changes: 1 addition & 1 deletion Pugs/src/Pugs/AST/Types.hs
@@ -1,4 +1,4 @@
{-# LANGUAGE TypeSynonymInstances, DeriveDataTypeable #-}
{-# LANGUAGE TypeSynonymInstances, DeriveDataTypeable, FlexibleInstances #-}
module Pugs.AST.Types where
import Pugs.Internals
import Pugs.Types
Expand Down
2 changes: 1 addition & 1 deletion Pugs/src/Pugs/Meta/Perl5.hs
@@ -1,4 +1,4 @@
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, DeriveDataTypeable, PatternGuards #-}
{-# LANGUAGE MultiParamTypeClasses, TypeSynonymInstances, DeriveDataTypeable, PatternGuards, FlexibleInstances #-}

module Pugs.Meta.Perl5 (Perl5Responder) where
import Pugs.Val
Expand Down
2 changes: 1 addition & 1 deletion Pugs/src/Pugs/Parser/Types.hs
@@ -1,5 +1,5 @@
{-# OPTIONS_GHC -funbox-strict-fields #-}
{-# LANGUAGE TypeSynonymInstances, MultiParamTypeClasses, PatternGuards #-}
{-# LANGUAGE TypeSynonymInstances, MultiParamTypeClasses, PatternGuards, FlexibleInstances #-}

module Pugs.Parser.Types (
RuleParser, RuleState(..), CharClass(..),
Expand Down
2 changes: 1 addition & 1 deletion Pugs/src/Pugs/Val.hs
@@ -1,4 +1,4 @@
{-# LANGUAGE ScopedTypeVariables, TypeSynonymInstances, MultiParamTypeClasses, DeriveDataTypeable, GeneralizedNewtypeDeriving #-}
{-# LANGUAGE ScopedTypeVariables, TypeSynonymInstances, MultiParamTypeClasses, DeriveDataTypeable, GeneralizedNewtypeDeriving, FlexibleInstances #-}
{-|
Perl 6 Values.
Expand Down

0 comments on commit d4c5c2a

Please sign in to comment.