Skip to content
This repository has been archived by the owner on Jun 9, 2021. It is now read-only.

Commit

Permalink
Make sure all .hs files end in a newline
Browse files Browse the repository at this point in the history
GHC sometimes (but not consistently?) warns about missing newlines
at the end of source files. With -Werror enabled, this causes builds
to fail.
  • Loading branch information
Aaron Tomb committed Dec 10, 2014
1 parent 633ce6c commit 07e7506
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Setup.hs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import Distribution.Simple
main = defaultMain
main = defaultMain
2 changes: 1 addition & 1 deletion src/Verifier/SAW/Typechecker/Monad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -292,4 +292,4 @@ evaluatedRef :: NodeName -> v -> TC s (TCRef s v)
evaluatedRef nm v = TC $ \tc s -> do
r <- newSTRef (TRSDone v)
let c = tsRefCount s
tcDone (TCRef nm c r) tc s { tsRefCount = c + 1 }
tcDone (TCRef nm c r) tc s { tsRefCount = c + 1 }

0 comments on commit 07e7506

Please sign in to comment.