Index: src/Parser/DeclarationNode.cc
===================================================================
--- src/Parser/DeclarationNode.cc	(revision a7c90d4d68e0538c8215b52b958e12c56980c401)
+++ src/Parser/DeclarationNode.cc	(revision c3396e0d2c816ef3a201a7129934611954eb8c7a)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 12:34:05 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Mar  7 08:02:09 2017
-// Update Count     : 936
+// Last Modified On : Tue Mar  7 17:28:56 2017
+// Update Count     : 937
 //
 
@@ -359,5 +359,9 @@
 	DeclarationNode * newnode = new DeclarationNode;
 	newnode->type = new TypeData( TypeData::Pointer );
-	return newnode->addQualifiers( qualifiers );
+	if ( qualifiers ) {
+		return newnode->addQualifiers( qualifiers );
+	} else {
+		return newnode;
+	} // if
 } // DeclarationNode::newPointer
 
Index: src/Parser/TypeData.h
===================================================================
--- src/Parser/TypeData.h	(revision a7c90d4d68e0538c8215b52b958e12c56980c401)
+++ src/Parser/TypeData.h	(revision c3396e0d2c816ef3a201a7129934611954eb8c7a)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 15:18:36 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Mar  7 08:03:53 2017
-// Update Count     : 173
+// Last Modified On : Wed Mar  8 22:28:33 2017
+// Update Count     : 174
 //
 
@@ -76,19 +76,19 @@
 	DeclarationNode::Length length = DeclarationNode::NoLength;
 	DeclarationNode::BuiltinType builtintype = DeclarationNode::NoBuiltinType;
+
 	typedef std::bitset< DeclarationNode::NoTypeQualifier > TypeQualifiers;
 	TypeQualifiers typeQualifiers;
 	DeclarationNode * forall;
 
-		// Basic_t basic;
-		Aggregate_t aggregate;
-		AggInst_t aggInst;
-		Array_t array;
-		Enumeration_t enumeration;
-		// Variable_t variable;
-		Function_t function;
-		Symbolic_t symbolic;
-		DeclarationNode * tuple;
-		ExpressionNode * typeexpr;
-		// DeclarationNode::BuiltinType builtin;
+	// Basic_t basic;
+	Aggregate_t aggregate;
+	AggInst_t aggInst;
+	Array_t array;
+	Enumeration_t enumeration;
+	// Variable_t variable;
+	Function_t function;
+	Symbolic_t symbolic;
+	DeclarationNode * tuple;
+	ExpressionNode * typeexpr;
 
 	TypeData( Kind k = Unknown );
