diff options
| author | hallgren <hallgren@chalmers.se> | 2011-10-20 13:21:28 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2011-10-20 13:21:28 +0000 |
| commit | 6c5ee3d6667a869a3f9b36cc4b036de3fde33f06 (patch) | |
| tree | e2716db0fbe995db1f3736814287e7362727b5b7 /src | |
| parent | b8124730b10b0f71a8e6510a5b325dea21ead5c2 (diff) | |
PGF.hs: Add LANGUAGE BangPatterns to make GHC 7.2 happy
Also remove oddly named function forExample (topological sorting) from export
list.
Diffstat (limited to 'src')
| -rw-r--r-- | src/runtime/haskell/PGF.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/runtime/haskell/PGF.hs b/src/runtime/haskell/PGF.hs index cff225f08..0e653c62b 100644 --- a/src/runtime/haskell/PGF.hs +++ b/src/runtime/haskell/PGF.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE BangPatterns #-} ------------------------------------------------- -- | -- Module : PGF @@ -130,7 +131,7 @@ module PGF( readProbabilitiesFromFile, -- ** SortTop - forExample, +-- forExample, -- * Browsing browse @@ -138,7 +139,7 @@ module PGF( import PGF.CId import PGF.Linearize -import PGF.SortTop +--import PGF.SortTop import PGF.Generate import PGF.TypeCheck import PGF.Paraphrase |
