Skip to content

Commit

Permalink
Remove import warning in Options.hs
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasabel committed Feb 10, 2022
1 parent 4254e8b commit a9a3c32
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/src/BNFC/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ import Data.Either (partitionEithers)
import qualified Data.Map as Map
-- import qualified Data.List as List
import Data.Maybe (fromMaybe, maybeToList)
import Data.Semigroup (Semigroup(..)) -- for ghc 7.10
#if !MIN_VERSION_base(4,11,0)
import Data.Semigroup (Semigroup(..)) -- for ghc 7.10 - 8.2
#endif
import Data.Version (showVersion )

import System.Console.GetOpt
Expand Down

0 comments on commit a9a3c32

Please sign in to comment.