Index: translator/SynTree/AddressExpr.cc
===================================================================
--- translator/SynTree/AddressExpr.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/AddressExpr.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -10,6 +10,6 @@
 // Created On       : Sun May 17 23:54:44 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 07:48:14 2015
-// Update Count     : 5
+// Last Modified On : Tue May 19 16:52:51 2015
+// Update Count     : 6
 //
 
@@ -19,7 +19,7 @@
 
 AddressExpr::AddressExpr( Expression *arg, Expression *_aname ) : Expression( _aname ), arg( arg ) {
-    for ( std::list< Type* >::const_iterator i = arg->get_results().begin(); i != arg->get_results().end(); ++i ) {
+	for ( std::list< Type* >::const_iterator i = arg->get_results().begin(); i != arg->get_results().end(); ++i ) {
 		get_results().push_back( new PointerType( Type::Qualifiers(), (*i)->clone() ) );
-    } // for
+	} // for
 }
 
@@ -28,12 +28,12 @@
 
 AddressExpr::~AddressExpr() {
-    delete arg;
+	delete arg;
 }
 
 void AddressExpr::print( std::ostream &os, int indent ) const {
-    os << std::string( indent, ' ' ) << "Address of:" << std::endl;
-    if ( arg ) {
+	os << std::string( indent, ' ' ) << "Address of:" << std::endl;
+	if ( arg ) {
 		arg->print( os, indent+2 );
-    } // if
+	} // if
 }
 
Index: translator/SynTree/AggregateDecl.cc
===================================================================
--- translator/SynTree/AggregateDecl.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/AggregateDecl.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -10,6 +10,6 @@
 // Created On       : Sun May 17 23:56:39 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 07:48:23 2015
-// Update Count     : 4
+// Last Modified On : Tue May 19 16:52:08 2015
+// Update Count     : 5
 //
 
@@ -23,37 +23,37 @@
 
 AggregateDecl::AggregateDecl( const AggregateDecl &other ) : Parent( other ) {
-    cloneAll( other.members, members );
-    cloneAll( other.parameters, parameters );
+	cloneAll( other.members, members );
+	cloneAll( other.parameters, parameters );
 }
 
 AggregateDecl::~AggregateDecl() {
-    deleteAll( members );
-    deleteAll( parameters );
+	deleteAll( members );
+	deleteAll( parameters );
 }
 
 void AggregateDecl::print( std::ostream &os, int indent ) const {
-    using std::string;
-    using std::endl;
+	using std::string;
+	using std::endl;
 
-    os << typeString() << " " << get_name();
-    if ( ! parameters.empty() ) {
+	os << typeString() << " " << get_name();
+	if ( ! parameters.empty() ) {
 		os << endl << string( indent+2, ' ' ) << "with parameters" << endl;
 		printAll( parameters, os, indent+4 );
-    } // if
-    if ( ! members.empty() ) {
+	} // if
+	if ( ! members.empty() ) {
 		os << endl << string( indent+2, ' ' ) << "with members" << endl;
 		printAll( members, os, indent+4 );
-    } // if
+	} // if
 }
 
 void AggregateDecl::printShort( std::ostream &os, int indent ) const {
-    using std::string;
-    using std::endl;
+	using std::string;
+	using std::endl;
 
-    os << typeString() << " " << get_name();
-    if ( ! parameters.empty() ) {
+	os << typeString() << " " << get_name();
+	if ( ! parameters.empty() ) {
 		os << endl << string( indent+2, ' ' ) << "with parameters" << endl;
 		printAll( parameters, os, indent+4 );
-    } // if
+	} // if
 }
 
Index: translator/SynTree/AttrType.cc
===================================================================
--- translator/SynTree/AttrType.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/AttrType.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -5,11 +5,11 @@
 // file "LICENCE" distributed with Cforall.
 //
-// XXX.cc -- 
+// AttrType.cc.cc -- 
 //
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 07:53:48 2015
-// Update Count     : 1
+// Last Modified On : Tue May 19 16:41:51 2015
+// Update Count     : 2
 //
 
Index: translator/SynTree/CodeGenVisitor.cc
===================================================================
--- translator/SynTree/CodeGenVisitor.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/CodeGenVisitor.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -22,5 +22,5 @@
 using namespace std;
 
-void CodeGenVisitor::visit( Type *type ){ }
+void CodeGenVisitor::visit( Type *type ) { }
 void CodeGenVisitor::visit( BasicType *basicType ) { }
 
@@ -29,5 +29,5 @@
 }
 
-void CodeGenVisitor::visit( Expression *expr ){ }
+void CodeGenVisitor::visit( Expression *expr ) { }
 
 void CodeGenVisitor::visit( ConstantExpr *cnst ) {
Index: translator/SynTree/Expression.cc
===================================================================
--- translator/SynTree/Expression.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/Expression.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -295,5 +295,5 @@
 }
 
-LogicalExpr::~LogicalExpr(){
+LogicalExpr::~LogicalExpr() {
 	delete arg1;
 	delete arg2;
Index: translator/SynTree/ReferenceToType.cc
===================================================================
--- translator/SynTree/ReferenceToType.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/ReferenceToType.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 10:49:00 2015
-// Update Count     : 2
+// Last Modified On : Tue May 19 16:52:40 2015
+// Update Count     : 3
 //
 
@@ -27,20 +27,20 @@
 
 ReferenceToType::ReferenceToType( const ReferenceToType &other ) : Type( other ), name( other.name ) {
-    cloneAll( other.parameters, parameters );
+	cloneAll( other.parameters, parameters );
 }
 
 ReferenceToType::~ReferenceToType() {
-    deleteAll( parameters );
+	deleteAll( parameters );
 }
 
 void ReferenceToType::print( std::ostream &os, int indent ) const {
-    using std::endl;
-    
-    Type::print( os, indent );
-    os << "instance of " << typeString() << " " << name << " ";
-    if ( ! parameters.empty() ) {
+	using std::endl;
+	
+	Type::print( os, indent );
+	os << "instance of " << typeString() << " " << name << " ";
+	if ( ! parameters.empty() ) {
 		os << endl << std::string( indent, ' ' ) << "with parameters" << endl;
 		printAll( parameters, os, indent+2 );
-    } // if
+	} // if
 }
 
@@ -60,6 +60,6 @@
 
 void StructInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const {
-    assert( baseStruct );
-    doLookup( baseStruct->get_members(), baseStruct->get_parameters(), parameters, name, foundDecls );
+	assert( baseStruct );
+	doLookup( baseStruct->get_members(), baseStruct->get_parameters(), parameters, name, foundDecls );
 }
 
@@ -67,6 +67,6 @@
 
 void UnionInstType::lookup( const std::string &name, std::list< Declaration* > &foundDecls ) const {
-    assert( baseUnion );
-    doLookup( baseUnion->get_members(), baseUnion->get_parameters(), parameters, name, foundDecls );
+	assert( baseUnion );
+	doLookup( baseUnion->get_members(), baseUnion->get_parameters(), parameters, name, foundDecls );
 }
 
@@ -76,13 +76,13 @@
 
 ContextInstType::ContextInstType( const ContextInstType &other ) : Parent( other ) {
-    cloneAll( other.members, members );
+	cloneAll( other.members, members );
 }
 
 ContextInstType::~ContextInstType() {
-    deleteAll( members );
+	deleteAll( members );
 }
 
 TypeInstType::TypeInstType( const Type::Qualifiers &tq, const std::string &name, TypeDecl *baseType ) : Parent( tq, name ) {
-    set_baseType( baseType );
+	set_baseType( baseType );
 }
 
@@ -91,6 +91,6 @@
 
 void TypeInstType::set_baseType( TypeDecl *newValue ) {
-    baseType = newValue;
-    isFtype = newValue->get_kind() == TypeDecl::Ftype;
+	baseType = newValue;
+	isFtype = newValue->get_kind() == TypeDecl::Ftype;
 }
 
@@ -98,12 +98,12 @@
 
 void TypeInstType::print( std::ostream &os, int indent ) const {
-    using std::endl;
-    
-    Type::print( os, indent );
-    os << "instance of " << typeString() << " " << get_name() << " (" << ( isFtype ? "" : "not" ) << " a function type) ";
-    if ( ! parameters.empty() ) {
+	using std::endl;
+	
+	Type::print( os, indent );
+	os << "instance of " << typeString() << " " << get_name() << " (" << ( isFtype ? "" : "not" ) << " a function type) ";
+	if ( ! parameters.empty() ) {
 		os << endl << std::string( indent, ' ' ) << "with parameters" << endl;
 		printAll( parameters, os, indent+2 );
-    } // if
+	} // if
 }
 
Index: translator/SynTree/Statement.cc
===================================================================
--- translator/SynTree/Statement.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/Statement.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -58,5 +58,5 @@
 }
 
-void BranchStmt::print( std::ostream &os, int indent ){
+void BranchStmt::print( std::ostream &os, int indent ) {
 	os << "\r" << string( indent, ' ') << "Branch (" << brType[type] << ")" << endl ;
 }
@@ -79,5 +79,5 @@
 IfStmt::~IfStmt() {}
 
-void IfStmt::print( std::ostream &os, int indent ){
+void IfStmt::print( std::ostream &os, int indent ) {
 	os << "\r" << string( indent, ' ') << "If on condition: " << endl ;
 	condition->print( os, indent + 4 );
@@ -175,9 +175,9 @@
 }
 
-WhileStmt::~WhileStmt(){
+WhileStmt::~WhileStmt() {
 	delete body;
 }
 
-void WhileStmt::print( std::ostream &os, int indent ){
+void WhileStmt::print( std::ostream &os, int indent ) {
 	os << "\r" << string( indent, ' ') << "While on condition: " << endl ;
 	condition->print( os, indent + 4 );
@@ -199,5 +199,5 @@
 }
 
-void ForStmt::print( std::ostream &os, int indent ){
+void ForStmt::print( std::ostream &os, int indent ) {
 	os << "\r" << string( indent, ' ') << "For Statement" << endl ;
 
@@ -231,5 +231,5 @@
 }
 
-TryStmt::~TryStmt(){
+TryStmt::~TryStmt() {
 	delete block;
 }
@@ -257,5 +257,5 @@
 }
 
-CatchStmt::~CatchStmt(){
+CatchStmt::~CatchStmt() {
 	delete decl;
 	delete body;
Index: translator/SynTree/Type.cc
===================================================================
--- translator/SynTree/Type.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/Type.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon May 18 11:00:29 2015
-// Update Count     : 1
+// Last Modified On : Tue May 19 16:52:27 2015
+// Update Count     : 2
 //
 
@@ -21,25 +21,25 @@
 
 const char *BasicType::typeNames[BasicType::NUMBER_OF_BASIC_TYPES] = {
-    "_Bool",
-    "char",
-    "char",
-    "unsigned char",
-    "short",
-    "short unsigned",
-    "int",
-    "unsigned int",
-    "long int",
-    "long unsigned int",
-    "long long int",
-    "long long unsigned int",
-    "float",
-    "double",
-    "long double",
-    "float _Complex",
-    "double _Complex",
-    "long double _Complex",
-    "float _Imaginary",
-    "double _Imaginary",
-    "long double _Imaginary",
+	"_Bool",
+	"char",
+	"char",
+	"unsigned char",
+	"short",
+	"short unsigned",
+	"int",
+	"unsigned int",
+	"long int",
+	"long unsigned int",
+	"long long int",
+	"long long unsigned int",
+	"float",
+	"double",
+	"long double",
+	"float _Complex",
+	"double _Complex",
+	"long double _Complex",
+	"float _Imaginary",
+	"double _Imaginary",
+	"long double _Imaginary",
 };
 
@@ -47,32 +47,32 @@
 
 Type::Type( const Type &other ) : tq( other.tq ) {
-    cloneAll( other.forall, forall );
+	cloneAll( other.forall, forall );
 }
 
 Type::~Type() {
-    deleteAll( forall );
+	deleteAll( forall );
 }
 
 void Type::print( std::ostream &os, int indent ) const {
-    if ( ! forall.empty() ) {
+	if ( ! forall.empty() ) {
 		os << "forall" << std::endl;
 		printAll( forall, os, indent + 4 );
 		os << std::string( indent+2, ' ' );
-    } // if
-    if ( tq.isConst ) {
+	} // if
+	if ( tq.isConst ) {
 		os << "const ";
-    } // if
-    if ( tq.isVolatile ) {
+	} // if
+	if ( tq.isVolatile ) {
 		os << "volatile ";
-    } // if
-    if ( tq.isRestrict ) {
+	} // if
+	if ( tq.isRestrict ) {
 		os << "restrict ";
-    } // if
-    if ( tq.isLvalue ) {
+	} // if
+	if ( tq.isLvalue ) {
 		os << "lvalue ";
-    } // if
-    if ( tq.isAtomic ) {
+	} // if
+	if ( tq.isAtomic ) {
 		os << "_Atomic ";
-    } // if
+	} // if
 }
 
Index: translator/SynTree/Visitor.cc
===================================================================
--- translator/SynTree/Visitor.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
+++ translator/SynTree/Visitor.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -111,5 +111,5 @@
 }
 
-void Visitor::visit( FallthruStmt *fallthruStmt ){}
+void Visitor::visit( FallthruStmt *fallthruStmt ) {}
 
 void Visitor::visit( CaseStmt *caseStmt ) {
