Index: src/Parser/TypeData.h
===================================================================
--- src/Parser/TypeData.h	(revision f9c3100156c086aa3d4850dce3164f828d44dcaa)
+++ src/Parser/TypeData.h	(revision fec3e9a093643c46f1787bf2042fab386e27afca)
@@ -7,21 +7,21 @@
 // TypeData.h --
 //
-// Author           : Rodolfo G. Esteves
+// Author           : Peter A. Buhr
 // Created On       : Sat May 16 15:18:36 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Dec 13 23:42:35 2019
-// Update Count     : 199
+// Last Modified On : Sat Mar 27 09:05:35 2021
+// Update Count     : 200
 //
 
 #pragma once
 
-#include <iosfwd>                // for ostream
-#include <list>                  // for list
-#include <string>                // for string
+#include <iosfwd>										// for ostream
+#include <list>											// for list
+#include <string>										// for string
 
-#include "ParseNode.h"           // for DeclarationNode, DeclarationNode::Ag...
-#include "SynTree/LinkageSpec.h" // for Spec
-#include "SynTree/Type.h"        // for Type, ReferenceToType (ptr only)
-#include "SynTree/SynTree.h"     // for Visitor Nodes
+#include "ParseNode.h"									// for DeclarationNode, DeclarationNode::Ag...
+#include "SynTree/LinkageSpec.h"						// for Spec
+#include "SynTree/Type.h"								// for Type, ReferenceToType (ptr only)
+#include "SynTree/SynTree.h"							// for Visitor Nodes
 
 struct TypeData {
@@ -33,5 +33,5 @@
 		const std::string * name = nullptr;
 		DeclarationNode * params = nullptr;
-		ExpressionNode * actuals = nullptr;						// holds actual parameters later applied to AggInst
+		ExpressionNode * actuals = nullptr;				// holds actual parameters later applied to AggInst
 		DeclarationNode * fields = nullptr;
 		bool body;
@@ -62,9 +62,9 @@
 
 	struct Function_t {
-		mutable DeclarationNode * params = nullptr;				// mutables modified in buildKRFunction
-		mutable DeclarationNode * idList = nullptr;				// old-style
+		mutable DeclarationNode * params = nullptr;		// mutables modified in buildKRFunction
+		mutable DeclarationNode * idList = nullptr;		// old-style
 		mutable DeclarationNode * oldDeclList = nullptr;
 		StatementNode * body = nullptr;
-		ExpressionNode * withExprs = nullptr;						// expressions from function's with_clause
+		ExpressionNode * withExprs = nullptr;			// expressions from function's with_clause
 	};
 
