From 61ed306db299c171293350ae028be0f9e7f4845b Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Sun, 12 Dec 2021 17:22:52 +0100 Subject: Less warnings on 5 and 8 --- 2021/5.hs | 1 + 2021/8.hs | 1 + 2 files changed, 2 insertions(+) diff --git a/2021/5.hs b/2021/5.hs index 7ab4f3b..05c3c1e 100644 --- a/2021/5.hs +++ b/2021/5.hs @@ -1,4 +1,5 @@ {-# LANGUAGE TupleSections #-} +{-# OPTIONS -Wno-incomplete-uni-patterns #-} module Main where import qualified Data.Array as A diff --git a/2021/8.hs b/2021/8.hs index 7876aef..fa2db1c 100644 --- a/2021/8.hs +++ b/2021/8.hs @@ -1,3 +1,4 @@ +{-# OPTIONS -Wno-incomplete-uni-patterns #-} module Main where import qualified Data.Array as A -- cgit v1.2.3-54-g00ecf