From 70f47e1795fac88c669a64f179430797293d6f58 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 4 Mar 2019 23:36:17 -0500 Subject: [PATCH] src/FunctionValues.hs: disable incomplete pattern match warnings. This module has an incomplete match by design, too. Ignore it. --- src/FunctionValues.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/FunctionValues.hs b/src/FunctionValues.hs index dc1f0d0..632a7f4 100644 --- a/src/FunctionValues.hs +++ b/src/FunctionValues.hs @@ -1,3 +1,6 @@ +-- The "value_at" function pattern matches on some integers, but +-- doesn't handle the "otherwise" case, for performance reasons. +{-# OPTIONS_GHC -Wno-incomplete-patterns #-} {-# LANGUAGE BangPatterns #-} -- | The FunctionValues module contains the 'FunctionValues' type and -- 2.43.2