X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Fmain%2FParsePkgConf.y;h=85385a7266950826b9e2d6f2ac4756467b5c1ce2;hb=0c45d82423fcff64b43b95ab4882b26e7de560bf;hp=901a5bc94335b871c41fcc8be349ba4cfd54b02f;hpb=0065d5ab628975892cea1ec7303f968c3338cbe1;p=ghc-hetmet.git diff --git a/compiler/main/ParsePkgConf.y b/compiler/main/ParsePkgConf.y index 901a5bc..85385a7 100644 --- a/compiler/main/ParsePkgConf.y +++ b/compiler/main/ParsePkgConf.y @@ -1,4 +1,11 @@ { +{-# OPTIONS -w #-} +-- The above warning supression flag is a temporary kludge. +-- While working on this module you are encouraged to remove it and fix +-- any warnings in the module. See +-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings +-- for details + module ParsePkgConf( loadPackageConfig ) where #include "HsVersions.h" @@ -12,7 +19,7 @@ import ErrUtils ( mkLocMessage ) import SrcLoc import Outputable import Panic ( GhcException(..) ) -import EXCEPTION ( throwDyn ) +import Control.Exception ( throwDyn ) }