From f84d60e69f7d4c00f2d28233581ad73b4374d567 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Mon, 11 May 2015 10:17:43 +0100 Subject: [PATCH] [QA] allow emptyDataDecls --- QA.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QA.hs b/QA.hs index 8d72818..981410a 100644 --- a/QA.hs +++ b/QA.hs @@ -18,13 +18,13 @@ import Control.Exception import System.Console.ANSI allowedExtensions = - [ ScopedTypeVariables, BangPatterns, ForeignFunctionInterface, OverloadedStrings, DeriveDataTypeable, ViewPatterns, GeneralizedNewtypeDeriving, ExistentialQuantification ] + [ ScopedTypeVariables, BangPatterns, ForeignFunctionInterface, OverloadedStrings, DeriveDataTypeable, ViewPatterns, GeneralizedNewtypeDeriving, ExistentialQuantification, EmptyDataDecls ] perModuleAllowedExtensions = [ ("Crypto/Hash/Utils.hs", [MagicHash]) , ("Crypto/Internal/ByteArray.hs", [MagicHash, UnboxedTuples]) , ("Crypto/Internal/Memory.hs", [MagicHash, UnboxedTuples]) , ("Crypto/Internal/Compat.hs", [CPP]) - , ("Crypto/Internal/CompatPrim.hs", [CPP,MagicHash]) + , ("Crypto/Internal/CompatPrim.hs", [CPP,MagicHash,UnboxedTuples]) , ("Crypto/Internal/Endian.hs", [CPP]) , ("Crypto/Internal/WordArray.hs", [UnboxedTuples,MagicHash]) , ("Crypto/Internal/Hex.hs", [Rank2Types, UnboxedTuples, MagicHash])