Index: src/SynTree/Declaration.h
===================================================================
--- src/SynTree/Declaration.h	(revision 8135d4c79504a6c3047246007261186efa5ba4c9)
+++ src/SynTree/Declaration.h	(revision ec55ed511aef2cea8def162fb5808c263ad1f7e5)
@@ -109,5 +109,5 @@
 	virtual DeclarationWithType *acceptMutator( Mutator &m ) = 0;
 
-	virtual Type *get_type() const = 0;
+	virtual Type * get_type() const = 0;
 	virtual void set_type(Type *) = 0;
 
@@ -128,5 +128,5 @@
 	virtual ~ObjectDecl();
 
-	virtual Type *get_type() const { return type; }
+	virtual Type * get_type() const { return type; }
 	virtual void set_type(Type *newType) { type = newType; }
 
@@ -155,8 +155,8 @@
 	virtual ~FunctionDecl();
 
-	Type *get_type() const;
+	Type * get_type() const;
 	virtual void set_type(Type *);
 
-	FunctionType *get_functionType() const { return type; }
+	FunctionType * get_functionType() const { return type; }
 	void set_functionType( FunctionType *newValue ) { type = newValue; }
 	CompoundStmt *get_statements() const { return statements; }
