diff options
author | Ian Lynagh <igloo@earth.li> | 2007-09-21 16:35:52 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-09-21 16:35:52 +0000 |
commit | 982c1f494de8a691294a95aee108e765c3f592a0 (patch) | |
tree | 2ed3239600e55fe707e7408e2fa108413db2c797 /compiler/utils/GraphOps.hs | |
parent | fee569a69a4ce8c8d05b8a1fb8069d804dbd2b9c (diff) | |
download | haskell-982c1f494de8a691294a95aee108e765c3f592a0.tar.gz |
Move OPTIONS pragmas above comments
Fixes building with -Werror (i.e. validate) and GHC < 6.6
Diffstat (limited to 'compiler/utils/GraphOps.hs')
-rw-r--r-- | compiler/utils/GraphOps.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/GraphOps.hs b/compiler/utils/GraphOps.hs index a711df9f50..880f3c65cd 100644 --- a/compiler/utils/GraphOps.hs +++ b/compiler/utils/GraphOps.hs @@ -1,6 +1,6 @@ +{-# OPTIONS -fno-warn-missing-signatures #-} -- | Basic operations on graphs. -- -{-# OPTIONS -fno-warn-missing-signatures #-} module GraphOps ( addNode, delNode, getNode, lookupNode, modNode, |