Skip to content

Commit e82e9c4

Browse files
committed
prune -Wno-missing-signatures
1 parent 21a48fe commit e82e9c4

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

src/Nix/Builtins.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
{-# LANGUAGE UndecidableInstances #-}
2020
{-# LANGUAGE ViewPatterns #-}
2121

22-
{-# OPTIONS_GHC -Wno-missing-signatures #-}
2322
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
2423

2524
-- | Code that implements Nix builtins. Lists the functions that are built into the Nix expression evaluator. Some built-ins (aka `derivation`), are always in the scope, so they can be accessed by the name. To keap the namespace clean, most built-ins are inside the `builtins` scope - a set that contains all what is a built-in.

src/Nix/Convert.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
{-# LANGUAGE TypeFamilies #-}
1414
{-# LANGUAGE UndecidableInstances #-}
1515

16-
{-# OPTIONS_GHC -Wno-missing-signatures #-}
1716
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
1817

1918
-- | Although there are a lot of instances in this file, really it's just a

src/Nix/Exec.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
{-# LANGUAGE TypeFamilies #-}
1616
{-# LANGUAGE UndecidableInstances #-}
1717

18-
{-# OPTIONS_GHC -Wno-missing-signatures #-}
1918
{-# OPTIONS_GHC -Wno-orphans #-}
2019
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
2120

src/Nix/Value/Equal.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
{-# LANGUAGE ViewPatterns #-}
2323

2424
{-# OPTIONS_GHC -Wno-orphans #-}
25-
{-# OPTIONS_GHC -Wno-missing-signatures #-}
2625
{-# OPTIONS_GHC -Wno-missing-pattern-synonym-signatures #-}
2726

2827
module Nix.Value.Equal where

0 commit comments

Comments
 (0)