Skip to content

Commit

Permalink
Fix pragma style
Browse files Browse the repository at this point in the history
  • Loading branch information
Artyom committed Jul 23, 2017
1 parent f04b527 commit 8acfb22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
8 changes: 3 additions & 5 deletions bench/Functions.hs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{-# LANGUAGE
MagicHash,
BangPatterns,
CPP
#-}
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE CPP #-}


-- All these functions have to be in a separate module because otherwise
Expand Down
6 changes: 2 additions & 4 deletions bench/Main.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{-# LANGUAGE
BangPatterns,
MagicHash
#-}
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE MagicHash #-}


import Control.Monad.Trans.State.Lazy
Expand Down
10 changes: 4 additions & 6 deletions lib/Data/List/Index.hs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{-# LANGUAGE
CPP,
MagicHash,
ScopedTypeVariables,
BangPatterns
#-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE BangPatterns #-}


{- |
Expand Down

0 comments on commit 8acfb22

Please sign in to comment.