From 6c5ee3d6667a869a3f9b36cc4b036de3fde33f06 Mon Sep 17 00:00:00 2001 From: hallgren Date: Thu, 20 Oct 2011 13:21:28 +0000 Subject: [PATCH] PGF.hs: Add LANGUAGE BangPatterns to make GHC 7.2 happy Also remove oddly named function forExample (topological sorting) from export list. --- src/runtime/haskell/PGF.hs | 5 +++-- 1 file 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