Index: src/SynTree/Declaration.h
===================================================================
--- src/SynTree/Declaration.h	(revision 1e8b02f5d6be0872e21934bb090b99f373442fd9)
+++ src/SynTree/Declaration.h	(revision 28307be7d2cda5127601e285d00fb951c75f442f)
@@ -153,5 +153,5 @@
   public:
 	NamedTypeDecl( const std::string &name, DeclarationNode::StorageClass sc, Type *type );
-	NamedTypeDecl( const TypeDecl &other );
+	NamedTypeDecl( const NamedTypeDecl &other );
 	virtual ~NamedTypeDecl();
 
Index: src/SynTree/NamedTypeDecl.cc
===================================================================
--- src/SynTree/NamedTypeDecl.cc	(revision 1e8b02f5d6be0872e21934bb090b99f373442fd9)
+++ src/SynTree/NamedTypeDecl.cc	(revision 28307be7d2cda5127601e285d00fb951c75f442f)
@@ -5,5 +5,5 @@
 // file "LICENCE" distributed with Cforall.
 //
-// NamedTypeDecl.cc -- 
+// NamedTypeDecl.cc --
 //
 // Author           : Richard C. Bilson
@@ -21,5 +21,5 @@
 	: Parent( name, sc, LinkageSpec::Cforall ), base( base ) {}
 
-NamedTypeDecl::NamedTypeDecl( const TypeDecl &other )
+NamedTypeDecl::NamedTypeDecl( const NamedTypeDecl &other )
 	: Parent( other ), base( maybeClone( other.base ) ) {
 	cloneAll( other.parameters, parameters );
@@ -35,5 +35,5 @@
 void NamedTypeDecl::print( std::ostream &os, int indent ) const {
 	using namespace std;
-	
+
 	if ( get_name() != "" ) {
 		os << get_name() << ": ";
@@ -59,5 +59,5 @@
 void NamedTypeDecl::printShort( std::ostream &os, int indent ) const {
 	using namespace std;
-	
+
 	if ( get_name() != "" ) {
 		os << get_name() << ": ";
