From 10d72c8779201a3c4255cb1d1110a56f287cba40 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 19 Feb 2017 17:17:35 +0000 Subject: [PATCH] remove unneeded extensions --- Crypto/Internal/Nat.hs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Crypto/Internal/Nat.hs b/Crypto/Internal/Nat.hs index fae1848..ed3a0c0 100644 --- a/Crypto/Internal/Nat.hs +++ b/Crypto/Internal/Nat.hs @@ -1,10 +1,6 @@ {-# LANGUAGE CPP #-} -{-# LANGUAGE ForeignFunctionInterface #-} -{-# LANGUAGE DeriveDataTypeable #-} -{-# LANGUAGE KindSignatures #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE ConstraintKinds #-} -{-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeOperators #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE UndecidableInstances #-} @@ -103,4 +99,3 @@ type family Mod8 (n :: Nat) where Mod8 n = Mod8 (n - 64) type IsDivisibleBy8 bitLen = IsDiv8 bitLen bitLen ~ 'True -