X.Config: Appease -Werror=type-equality-requires-operators

GHC 9.4 complains:

    The use of ‘~’ without TypeOperators
    will become an error in a future GHC release.
This commit is contained in:
Tomas Janousek 2022-10-30 21:48:36 +00:00
parent f96b3f0398
commit 6d7da8dc25

View File

@ -1,5 +1,6 @@
{-# OPTIONS_GHC -fno-warn-missing-signatures -fno-warn-orphans #-} {-# OPTIONS_GHC -fno-warn-missing-signatures -fno-warn-orphans #-}
{-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- | -- |
-- Module : XMonad.Config -- Module : XMonad.Config