GHC 7.2.2 also has fWarningFlags and fLangFlags

This commit is contained in:
Kohei Suzuki 2014-01-14 15:25:06 +09:00
parent f9c9ac676c
commit 0efd848924
1 changed files with 2 additions and 0 deletions

View File

@ -161,6 +161,8 @@ fOptions = [option | (option,_,_) <- fFlags]
++ [option | (option,_,_) <- fLangFlags]
#elif __GLASGOW_HASKELL__ == 702
fOptions = [option | (option,_,_,_) <- fFlags]
++ [option | (option,_,_,_) <- fWarningFlags]
++ [option | (option,_,_,_) <- fLangFlags]
#else
fOptions = [option | (option,_,_) <- fFlags]
#endif