Index: src/Parser/DeclarationNode.h
===================================================================
--- src/Parser/DeclarationNode.h	(revision 63499294b4415bba971383507fe0307c222b99b5)
+++ src/Parser/DeclarationNode.h	(revision 66b6f662a2e12cde4f4840dee5965d87868c80c2)
@@ -179,32 +179,32 @@
 // This generic buildList is here along side its overloads.
 template<typename AstType, typename NodeType,
-    template<typename, typename...> class Container, typename... Args>
+		template<typename, typename...> class Container, typename... Args>
 void buildList( NodeType * firstNode,
-        Container<ast::ptr<AstType>, Args...> & output ) {
-    SemanticErrorException errors;
-    std::back_insert_iterator<Container<ast::ptr<AstType>, Args...>> out( output );
-    NodeType * cur = firstNode;
-
-    while ( cur ) {
-        try {
-            if ( auto result = dynamic_cast<AstType *>( maybeBuild( cur ) ) ) {
-                *out++ = result;
-            } else {
-                assertf(false, __PRETTY_FUNCTION__ );
-                SemanticError( cur->location, "type specifier declaration in forall clause is currently unimplemented." );
-            } // if
-        } catch( SemanticErrorException & e ) {
-            errors.append( e );
-        } // try
-        ParseNode * temp = cur->get_next();
-        // Should not return nullptr, then it is non-homogeneous:
-        cur = dynamic_cast<NodeType *>( temp );
-        if ( !cur && temp ) {
-            SemanticError( temp->location, "internal error, non-homogeneous nodes founds in buildList processing." );
-        } // if
-    } // while
-    if ( ! errors.isEmpty() ) {
-        throw errors;
-    } // if
+		Container<ast::ptr<AstType>, Args...> & output ) {
+	SemanticErrorException errors;
+	std::back_insert_iterator<Container<ast::ptr<AstType>, Args...>> out( output );
+	NodeType * cur = firstNode;
+
+	while ( cur ) {
+		try {
+			if ( auto result = dynamic_cast<AstType *>( maybeBuild( cur ) ) ) {
+				*out++ = result;
+			} else {
+				assertf(false, __PRETTY_FUNCTION__ );
+				SemanticError( cur->location, "type specifier declaration in forall clause is currently unimplemented." );
+			} // if
+		} catch( SemanticErrorException & e ) {
+			errors.append( e );
+		} // try
+		ParseNode * temp = cur->get_next();
+		// Should not return nullptr, then it is non-homogeneous:
+		cur = dynamic_cast<NodeType *>( temp );
+		if ( !cur && temp ) {
+			SemanticError( temp->location, "internal error, non-homogeneous nodes founds in buildList processing." );
+		} // if
+	} // while
+	if ( ! errors.isEmpty() ) {
+		throw errors;
+	} // if
 }
 
@@ -214,5 +214,5 @@
 
 template<typename AstType, typename NodeType,
-template<typename, typename...> class Container, typename... Args>
+		template<typename, typename...> class Container, typename... Args>
 void buildMoveList( NodeType * firstNode,
 		Container<ast::ptr<AstType>, Args...> & output ) {
