Index: src/AST/Attribute.cpp
===================================================================
--- src/AST/Attribute.cpp	(revision c957e7f46a4ebf150c4cb6778b8d0053595805bb)
+++ src/AST/Attribute.cpp	(revision 0b57626619181487e65159333c0b9da5990e6e64)
@@ -28,5 +28,5 @@
 	auto end = name.find_last_not_of('_');
 	if ( begin == std::string::npos || end == std::string::npos ) return "";
-	
+
 	// convert to lowercase
 	std::string ret;
Index: src/AST/Convert.cpp
===================================================================
--- src/AST/Convert.cpp	(revision c957e7f46a4ebf150c4cb6778b8d0053595805bb)
+++ src/AST/Convert.cpp	(revision 0b57626619181487e65159333c0b9da5990e6e64)
@@ -1130,5 +1130,5 @@
 	const ast::Type * visit( const ast::FunctionType * node ) override final {
 		auto ty = new FunctionType {
-			cv( node ), 
+			cv( node ),
 			(bool)node->isVarArgs
 		};
@@ -1338,4 +1338,5 @@
 		// TypeSubstitution is not a node in the old model, so the conversion result wouldn't fit in this->node.
 		assert( 0 );
+		(void)node;
 		return nullptr;
 	}
@@ -1409,5 +1410,5 @@
 #	define GET_LABELS_V(labels) \
 		to<std::vector>::from( make_labels( std::move( labels ) ) )
-	
+
 	static ast::CV::Qualifiers cv( Type * ty ) { return { ty->get_qualifiers().val }; }
 
@@ -1549,5 +1550,5 @@
 
 	virtual void visit( TypeDecl * old ) override final {
-		if ( inCache( old ) ) return;	
+		if ( inCache( old ) ) return;
 		auto decl = new ast::TypeDecl{
 			old->location,
@@ -1587,5 +1588,5 @@
 	virtual void visit( AsmDecl * old ) override final {
 		auto decl = new ast::AsmDecl{
-			old->location, 
+			old->location,
 			GET_ACCEPT_1(stmt, AsmStmt)
 		};
@@ -2142,6 +2143,6 @@
 			rslt = new ast::ConstantExpr(
 				old->location,
-				GET_ACCEPT_1(result, Type), 
-				old->constant.get_value(), 
+				GET_ACCEPT_1(result, Type),
+				old->constant.get_value(),
 				(double) old->constant.get_dval()
 			);
@@ -2163,5 +2164,5 @@
 			assert(!old->isType);
 			rslt = new ast::SizeofExpr(
-				old->location, 
+				old->location,
 				GET_ACCEPT_1(expr, Expr)
 			);
@@ -2170,5 +2171,5 @@
 			assert(old->isType);
 			rslt = new ast::SizeofExpr(
-				old->location, 
+				old->location,
 				GET_ACCEPT_1(type, Type)
 			);
@@ -2184,5 +2185,5 @@
 			assert(!old->isType);
 			rslt = new ast::AlignofExpr(
-				old->location, 
+				old->location,
 				GET_ACCEPT_1(expr, Expr)
 			);
@@ -2191,5 +2192,5 @@
 			assert(old->isType);
 			rslt = new ast::AlignofExpr(
-				old->location, 
+				old->location,
 				GET_ACCEPT_1(type, Type)
 			);
@@ -2235,5 +2236,5 @@
 				GET_ACCEPT_1(arg1, Expr),
 				GET_ACCEPT_1(arg2, Expr),
-				old->get_isAnd() ? 
+				old->get_isAnd() ?
 					ast::LogicalFlag::AndExpr :
 					ast::LogicalFlag::OrExpr
Index: src/AST/Expr.cpp
===================================================================
--- src/AST/Expr.cpp	(revision c957e7f46a4ebf150c4cb6778b8d0053595805bb)
+++ src/AST/Expr.cpp	(revision 0b57626619181487e65159333c0b9da5990e6e64)
@@ -345,5 +345,5 @@
 }
 
-TupleAssignExpr::TupleAssignExpr( 
+TupleAssignExpr::TupleAssignExpr(
 	const CodeLocation & loc, const Type * result, const StmtExpr * s )
 : Expr( loc, result ), stmtExpr() {
Index: src/AST/GenericSubstitution.cpp
===================================================================
--- src/AST/GenericSubstitution.cpp	(revision c957e7f46a4ebf150c4cb6778b8d0053595805bb)
+++ src/AST/GenericSubstitution.cpp	(revision 0b57626619181487e65159333c0b9da5990e6e64)
@@ -32,5 +32,5 @@
 
 		void previsit( const Type * ty ) {
-			assertf( false, "Attempted generic substitution for non-aggregate type: %s", 
+			assertf( false, "Attempted generic substitution for non-aggregate type: %s",
 				toString( ty ).c_str() );
 		}
Index: src/AST/TypeSubstitution.hpp
===================================================================
--- src/AST/TypeSubstitution.hpp	(revision c957e7f46a4ebf150c4cb6778b8d0053595805bb)
+++ src/AST/TypeSubstitution.hpp	(revision 0b57626619181487e65159333c0b9da5990e6e64)
@@ -25,5 +25,5 @@
 #include "Fwd.hpp"        // for UniqueId
 #include "ParseNode.hpp"
-#include "Type.hpp"       
+#include "Type.hpp"
 #include "Common/SemanticError.h"  // for SemanticError
 #include "Visitor.hpp"
