Skip to content

Commit 661e2bd

Browse files
committed
🐛 Fix build on old compilers
1 parent 58ef436 commit 661e2bd

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/Grisette/Lib/Synth/Operator/OpParser.hs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{-# LANGUAGE FlexibleContexts #-}
2+
{-# LANGUAGE GADTs #-}
23

34
module Grisette.Lib.Synth.Operator.OpParser (OpParser (..)) where
45

src/Grisette/Lib/Synth/Program/ProgParser.hs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{-# LANGUAGE FlexibleContexts #-}
2+
{-# LANGUAGE GADTs #-}
23

34
module Grisette.Lib.Synth.Program.ProgParser
45
( ProgParser (..),

src/Grisette/Lib/Synth/Type/TypeParser.hs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{-# LANGUAGE FlexibleContexts #-}
2+
{-# LANGUAGE GADTs #-}
23

34
module Grisette.Lib.Synth.Type.TypeParser (TypeParser (..)) where
45

src/Grisette/Lib/Synth/Util/Parser.hs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{-# LANGUAGE ConstraintKinds #-}
22
{-# LANGUAGE FlexibleContexts #-}
3+
{-# LANGUAGE GADTs #-}
34
{-# LANGUAGE OverloadedStrings #-}
45
{-# LANGUAGE RankNTypes #-}
56
{-# LANGUAGE ScopedTypeVariables #-}

0 commit comments

Comments
 (0)