diff options
author | Simon Jakobi <simon.jakobi@gmail.com> | 2015-09-15 04:38:19 +0200 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-09-15 11:32:23 -0400 |
commit | 075a1e8f3e414adc282128e5b1cfbc02ffae1fab (patch) | |
tree | 4788127d5272211f1339d2107688e2476ec4f092 /Utility/OptParse.hs | |
parent | 358a1b0a06b044d9b02f532097cdbd09afcc3017 (diff) |
Silence redundant import warning with base-4.8.*
Diffstat (limited to 'Utility/OptParse.hs')
-rw-r--r-- | Utility/OptParse.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Utility/OptParse.hs b/Utility/OptParse.hs index f58e8fadf..8fb0affe0 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. -- |