Skip to content

Commit 6810f86

Browse files
committed
Fix conditional activating -Wno-incomplete-uni-patterns
1 parent 0f767ef commit 6810f86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Language/Haskell/ParseMonad.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
{-# LANGUAGE CPP #-}
1616

17-
#if __GLASGOW_HASKELL__ >= 902
18-
{-# OPTIONS_GHC -fno-warn-incomplete-uni-patterns #-}
17+
#if __GLASGOW_HASKELL__ >= 900
18+
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
1919
#endif
2020

2121
module Language.Haskell.ParseMonad(

0 commit comments

Comments
 (0)