Skip to content

Commit

Permalink
cleanup: Suppress another ghc warning in generated tags file.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Nov 24, 2023
1 parent 29ab17c commit c73264d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Data/MessagePack/Tags.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
-- tools/gen-tags > src/Data/MessagePack/Tags.hs
{-# LANGUAGE PatternSynonyms #-}
{-# OPTIONS_GHC -Wno-missing-pattern-synonym-signatures #-}
{-# OPTIONS_GHC -Wno-missing-signatures #-}
module Data.MessagePack.Tags where

pattern TAG_nil = 0xc0 -- 11000000
Expand Down
1 change: 1 addition & 0 deletions tools/gen-tags
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ print("""-- Generated file - DO NOT EDIT
-- tools/gen-tags > src/Data/MessagePack/Tags.hs
{-# LANGUAGE PatternSynonyms #-}
{-# OPTIONS_GHC -Wno-missing-pattern-synonym-signatures #-}
{-# OPTIONS_GHC -Wno-missing-signatures #-}
module Data.MessagePack.Tags where
""")

Expand Down

0 comments on commit c73264d

Please sign in to comment.