Index: src/SynTree/ApplicationExpr.cc
===================================================================
--- src/SynTree/ApplicationExpr.cc	(revision d3b7937ae7ab8afece0824b5729b7e86a9f0bd63)
+++ src/SynTree/ApplicationExpr.cc	(revision 89231bca718ca9495bdc5dfa547e4f79ee18cff8)
@@ -5,10 +5,10 @@
 // file "LICENCE" distributed with Cforall.
 //
-// ApplicationExpr.cc.cc -- 
+// ApplicationExpr.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:54:17 2015
+// Last Modified By : Rob Schluntz
+// Last Modified On : Tue Apr 26 12:41:06 2016
 // Update Count     : 4
 //
@@ -47,5 +47,5 @@
 	FunctionType *function = dynamic_cast< FunctionType* >( pointer->get_base() );
 	assert( function );
-	
+
 	for ( std::list< DeclarationWithType* >::const_iterator i = function->get_returnVals().begin(); i != function->get_returnVals().end(); ++i ) {
 		get_results().push_back( (*i)->get_type()->clone() );
@@ -64,5 +64,5 @@
 
 void ApplicationExpr::print( std::ostream &os, int indent ) const {
-	os << std::string( indent, ' ' ) << "Application of" << std::endl;
+	os << "Application of" << std::endl << std::string(indent, ' ');
 	function->print( os, indent+2 );
 	if ( ! args.empty() ) {
