Skip to content

Commit 7e37ca2

Browse files
authored
Merge pull request #1829 from oquechy/trustworthiness
Add trustworthiness pragma
2 parents 8c9256b + bce6abf commit 7e37ca2

File tree

6 files changed

+7
-1
lines changed

6 files changed

+7
-1
lines changed

liquid-base/src/Data/Bits.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE Trustworthy #-}
12
module Data.Bits ( module Exports ) where
23

34
import "base" Data.Bits as Exports

liquid-base/src/Data/Typeable.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE Trustworthy #-}
12
module Data.Typeable (module Exports) where
23

3-
import "base" Data.Typeable as Exports
4+
import "base" Data.Typeable as Exports

liquid-base/src/Data/Word.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE Trustworthy #-}
12
module Data.Word ( module Exports) where
23

34
import "base" Data.Word as Exports

liquid-base/src/Prelude.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE Trustworthy #-}
12
module Prelude (module Exports) where
23

34
import Data.Foldable

liquid-bytestring/src/Data/ByteString.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{-# LANGUAGE Trustworthy #-}
12
module Data.ByteString ( module Exports ) where
23

34
import Data.String

liquid-bytestring/src/Data/ByteString/Char8.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{-# LANGUAGE CPP #-}
2+
{-# LANGUAGE Trustworthy #-}
23
module Data.ByteString.Char8 ( module Exports ) where
34

45
import Data.Int

0 commit comments

Comments
 (0)