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
committed by Tony Zorman
parent 67267b7346
commit 4931bc4e41

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