|
From: <cod...@go...> - 2008-11-04 22:39:11
|
Author: wol...@gm...
Date: Tue Nov 4 14:35:50 2008
New Revision: 354
Modified:
trunk/hoc/Tests/MiniFoundation.hs
trunk/hoc/Tests/TestFFI.hs
Log:
more missing {-# LANGUAGE #-} pragmas
Modified: trunk/hoc/Tests/MiniFoundation.hs
==============================================================================
--- trunk/hoc/Tests/MiniFoundation.hs (original)
+++ trunk/hoc/Tests/MiniFoundation.hs Tue Nov 4 14:35:50 2008
@@ -1,4 +1,5 @@
-{-# LANGUAGE TemplateHaskell, StandaloneDeriving #-}
+{-# LANGUAGE TemplateHaskell, StandaloneDeriving, MultiParamTypeClasses,
+ TypeSynonymInstances, FlexibleInstances, RankNTypes #-}
module MiniFoundation where
import HOC
Modified: trunk/hoc/Tests/TestFFI.hs
==============================================================================
--- trunk/hoc/Tests/TestFFI.hs (original)
+++ trunk/hoc/Tests/TestFFI.hs Tue Nov 4 14:35:50 2008
@@ -1,4 +1,4 @@
-{-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE ForeignFunctionInterface, RankNTypes #-}
module TestFFI where
import HOC.FFICallInterface
|