From b468890f3ec9edd3cce5fa11e449fb3cd73e0bcb Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Tue, 15 Sep 2015 04:38:19 +0200 Subject: [PATCH] Silence redundant import warning with base-4.8.* --- Utility/OptParse.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/Utility/OptParse.hs b/Utility/OptParse.hs index f58e8fadf6..8fb0affe0c 100644 --- a/Utility/OptParse.hs +++ b/Utility/OptParse.hs @@ -9,6 +9,7 @@ module Utility.OptParse where import Options.Applicative import Data.Monoid +import Prelude -- Fix redundant import warning -- | A switch that can be enabled using --foo and disabled using --no-foo. --