diff options
author | Griffin Smith <root@gws.fyi> | 2020-05-12T02·47-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-05-12T03·03-0400 |
commit | ecd33e0c901b34d77ea77ad0f3b65125d85a4515 (patch) | |
tree | 182c6ee44cbf04ee604571f74d33328b9b785be5 /src/Xanthous/Generators | |
parent | 296f73a4d63479735cb5af90a4f502ef2477aed4 (diff) |
Add ViewPatterns to default-extensions
Seems relatively harmless
Diffstat (limited to 'src/Xanthous/Generators')
-rw-r--r-- | src/Xanthous/Generators/CaveAutomata.hs | 1 | ||||
-rw-r--r-- | src/Xanthous/Generators/Dungeon.hs | 1 | ||||
-rw-r--r-- | src/Xanthous/Generators/LevelContents.hs | 1 | ||||
-rw-r--r-- | src/Xanthous/Generators/Util.hs | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/Xanthous/Generators/CaveAutomata.hs b/src/Xanthous/Generators/CaveAutomata.hs index 5a7c081d03e9..83740fe4b73d 100644 --- a/src/Xanthous/Generators/CaveAutomata.hs +++ b/src/Xanthous/Generators/CaveAutomata.hs @@ -1,5 +1,4 @@ {-# LANGUAGE MultiWayIf #-} -{-# LANGUAGE ViewPatterns #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TemplateHaskell #-} -------------------------------------------------------------------------------- diff --git a/src/Xanthous/Generators/Dungeon.hs b/src/Xanthous/Generators/Dungeon.hs index fdc510bb79ec..7fde0075e64f 100644 --- a/src/Xanthous/Generators/Dungeon.hs +++ b/src/Xanthous/Generators/Dungeon.hs @@ -1,4 +1,3 @@ -{-# LANGUAGE ViewPatterns #-} {-# LANGUAGE TemplateHaskell #-} -------------------------------------------------------------------------------- module Xanthous.Generators.Dungeon diff --git a/src/Xanthous/Generators/LevelContents.hs b/src/Xanthous/Generators/LevelContents.hs index 5f83a83a3b6e..ed4cc87e79d7 100644 --- a/src/Xanthous/Generators/LevelContents.hs +++ b/src/Xanthous/Generators/LevelContents.hs @@ -1,4 +1,3 @@ -{-# LANGUAGE ViewPatterns #-} -------------------------------------------------------------------------------- module Xanthous.Generators.LevelContents ( chooseCharacterPosition diff --git a/src/Xanthous/Generators/Util.hs b/src/Xanthous/Generators/Util.hs index 13f248a045d8..cdac568e40a0 100644 --- a/src/Xanthous/Generators/Util.hs +++ b/src/Xanthous/Generators/Util.hs @@ -1,4 +1,3 @@ -{-# LANGUAGE ViewPatterns #-} {-# LANGUAGE QuantifiedConstraints #-} {-# LANGUAGE AllowAmbiguousTypes #-} -------------------------------------------------------------------------------- |