Index: src/AST/Decl.hpp
===================================================================
--- src/AST/Decl.hpp	(revision a4a6802c21ad37733cd39f58fada357d498a2561)
+++ src/AST/Decl.hpp	(revision 46bbcaf5b02a41281420f4eb06a9c8a6f6ff759f)
@@ -34,5 +34,5 @@
 // Must be included in *all* AST classes; should be #undef'd at the end of the file
 #define MUTATE_FRIEND \
-    template<typename node_t> friend node_t * mutate(const node_t * node); \
+	template<typename node_t> friend node_t * mutate(const node_t * node); \
 	template<typename node_t> friend node_t * shallowCopy(const node_t * node);
 
@@ -135,5 +135,4 @@
 	std::vector< ptr<Expr> > withExprs;
 
-
 	FunctionDecl( const CodeLocation & loc, const std::string & name, std::vector<ptr<TypeDecl>>&& forall,
 		std::vector<ptr<DeclWithType>>&& params, std::vector<ptr<DeclWithType>>&& returns,
Index: src/AST/Eval.hpp
===================================================================
--- src/AST/Eval.hpp	(revision a4a6802c21ad37733cd39f58fada357d498a2561)
+++ src/AST/Eval.hpp	(revision 46bbcaf5b02a41281420f4eb06a9c8a6f6ff759f)
@@ -24,6 +24,6 @@
 template< typename... Args >
 UntypedExpr * call( const CodeLocation & loc, const std::string & name, Args &&... args ) {
-	return new UntypedExpr { 
-		loc, new NameExpr { loc, name }, 
+	return new UntypedExpr {
+		loc, new NameExpr { loc, name },
 		std::vector< ptr< Expr > > { std::forward< Args >( args )... } };
 }
