Index: translator/ArgTweak/FunctionFixer.cc
===================================================================
--- translator/ArgTweak/FunctionFixer.cc	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
+++ translator/ArgTweak/FunctionFixer.cc	(revision 51587aa493cba4720a447024fed1e9d94b78524a)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 08:12:38 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat May 16 08:17:07 2015
-// Update Count     : 5
+// Last Modified On : Mon May 18 23:30:39 2015
+// Update Count     : 6
 //
 
Index: translator/ArgTweak/FunctionFixer.h
===================================================================
--- translator/ArgTweak/FunctionFixer.h	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
+++ translator/ArgTweak/FunctionFixer.h	(revision 51587aa493cba4720a447024fed1e9d94b78524a)
@@ -1,4 +1,19 @@
-#ifndef _DEFS_FUNCTION_FIXER_H_
-#define _DEFS_FUNCTION_FIXER_H_
+//
+// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// FunctionFixer.h -- 
+//
+// 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 23:31:58 2015
+// Update Count     : 3
+//
+
+#ifndef _FUNCTION_FIXER_H_
+#define _FUNCTION_FIXER_H_
 
 #include "SynTree/Mutator.h"
@@ -8,43 +23,38 @@
 
 namespace ArgTweak {
-  class FunctionFixer : public Mutator
-  {
-    typedef Mutator Parent;
+	class FunctionFixer : public Mutator {
+		typedef Mutator Parent;
+	  public:
+		FunctionFixer(SymTab::Indexer *ind = 0);
+		~FunctionFixer();
 
-  public:
-    FunctionFixer(SymTab::Indexer *ind = 0);
-    ~FunctionFixer();
+		virtual DeclarationWithType *mutate( FunctionDecl *functionDecl );
+		virtual Expression *mutate( UntypedExpr *untypedExpr ) throw ( SemanticError );
+	  private:
+		class Matcher {
+			typedef std::string key;
+			typedef DeclarationWithType * pattern_type;
+			typedef Expression * permutation_type;
+		  public:
+			static key null_key;
+			static permutation_type null_value;
 
-    virtual DeclarationWithType *mutate( FunctionDecl *functionDecl );
-    virtual Expression *mutate( UntypedExpr *untypedExpr ) throw ( SemanticError );
+			std::string extract_key( DeclarationWithType * );
+			std::string extract_key( Expression * );
 
-  private:
-    class Matcher {
-      typedef std::string key;
-      typedef DeclarationWithType * pattern_type;
-      typedef Expression * permutation_type;
-    public:
-      static key null_key;
-      static permutation_type null_value;
+			bool operator()( DeclarationWithType *, Expression * ) { return true; }
+		};
 
-      std::string extract_key( DeclarationWithType * );
-      std::string extract_key( Expression * );
+		SymTab::Indexer *index;
+	};
 
-      bool operator()( DeclarationWithType *, Expression * ) { return true; }
-    };
-
-    SymTab::Indexer *index;
-  };
-
-  template < class L1, class L2, class Predicate > bool align( L1 &pattern, L2 &possible_permutation, Predicate pred ); 
-
+	template < class L1, class L2, class Predicate > bool align( L1 &pattern, L2 &possible_permutation, Predicate pred ); 
 } // namespace ArgTweak
 
+#endif // _FUNCTION_FIXER_H_
 
-#endif // #ifndef _DEFS_FUNCTION_FIXER_H_
-
-/*
-  Local Variables:
-  mode: c++
-  End:
-*/
+// Local Variables: //
+// tab-width: 4 //
+// mode: c++ //
+// compile-command: "make install" //
+// End: //
Index: translator/ArgTweak/Mutate.cc
===================================================================
--- translator/ArgTweak/Mutate.cc	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
+++ translator/ArgTweak/Mutate.cc	(revision 51587aa493cba4720a447024fed1e9d94b78524a)
@@ -1,2 +1,17 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// Mutate.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 23:32:23 2015
+// Update Count     : 1
+//
+
 #include "SynTree/Mutator.h"
 
@@ -5,13 +20,14 @@
 
 namespace ArgTweak {
+	void mutate( std::list< Declaration * > translationUnit ) {
+		FunctionFixer ff;
 
-  void mutate( std::list< Declaration * > translationUnit )
-  {
-    FunctionFixer ff;
-
-    mutateAll( translationUnit, ff );
-  }
-
+		mutateAll( translationUnit, ff );
+	}
 } // namespace ArgTweak
 
-
+// Local Variables: //
+// tab-width: 4 //
+// mode: c++ //
+// compile-command: "make install" //
+// End: //
Index: translator/ArgTweak/Mutate.h
===================================================================
--- translator/ArgTweak/Mutate.h	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
+++ translator/ArgTweak/Mutate.h	(revision 51587aa493cba4720a447024fed1e9d94b78524a)
@@ -1,4 +1,19 @@
-#ifndef ARGTWEAK_MUTATE_H
-#define ARGTWEAK_MUTATE_H
+//
+// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// Mutate.h -- 
+//
+// 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 23:33:04 2015
+// Update Count     : 2
+//
+
+#ifndef _MUTATE_H
+#define _MUTATE_H
 
 #include <list>
@@ -8,14 +23,12 @@
 
 namespace ArgTweak {
-
-  void mutate( std::list< Declaration* > translationUnit );
-
+	void mutate( std::list< Declaration* > translationUnit );
 } // namespace ArgTweak
 
-#endif // #ifndef ARGTWEAK_MUTATE_H
+#endif // _MUTATE_H
 
-/*
-  Local Variables:
-  mode: c++
-  End:
-*/
+// Local Variables: //
+// tab-width: 4 //
+// mode: c++ //
+// compile-command: "make install" //
+// End: //
