enable TypeOperators
authorJoey Hess <joeyh@joeyh.name>
Tue, 1 Aug 2023 22:33:39 +0000 (18:33 -0400)
committerJoey Hess <joeyh@joeyh.name>
Tue, 1 Aug 2023 22:33:39 +0000 (18:33 -0400)
    The use of ‘~’ without TypeOperators
    will become an error in a future GHC release.

says new ghc

Database/Fsck.hs
Remote/S3.hs

index cccefefedafdb7f206468c404ca701c7dafa84c6..cce5528100fb9d1c3fe41454ed099380620c725c 100644 (file)
@@ -12,6 +12,7 @@
 {-# LANGUAGE DataKinds, FlexibleInstances #-}
 {-# LANGUAGE RankNTypes #-}
 {-# LANGUAGE UndecidableInstances #-}
+{-# LANGUAGE TypeOperators #-}
 #if MIN_VERSION_persistent_template(2,8,0)
 {-# LANGUAGE DerivingStrategies #-}
 {-# LANGUAGE StandaloneDeriving #-}
index 5fa8d97413ec56b3645def1802cd73fc3e22adab..b96fc96dcb4a6e279bf221e3e6f2d951ce6b23f1 100644 (file)
@@ -6,6 +6,7 @@
  -}
 
 {-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE TypeOperators #-}
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE BangPatterns #-}
 {-# LANGUAGE RankNTypes #-}