Index: translator/ResolvExpr/ResolveTypeof.cc
===================================================================
--- translator/ResolvExpr/ResolveTypeof.cc	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
+++ translator/ResolvExpr/ResolveTypeof.cc	(revision a08ba927e920255639a48d814cce47347723392a)
@@ -10,6 +10,6 @@
 // Created On       : Sun May 17 12:12:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun May 17 12:13:38 2015
-// Update Count     : 2
+// Last Modified On : Tue May 19 16:49:04 2015
+// Update Count     : 3
 //
 
@@ -23,5 +23,5 @@
 
 namespace ResolvExpr {
-    namespace {
+	namespace {
 #if 0
 		void
@@ -34,21 +34,21 @@
 		}
 #endif
-    }
+	}
 
-    class ResolveTypeof : public Mutator {
-      public:
+	class ResolveTypeof : public Mutator {
+	  public:
 		ResolveTypeof( const SymTab::Indexer &indexer ) : indexer( indexer ) {}
 		Type *mutate( TypeofType *typeofType );
 
-      private:
+	  private:
 		const SymTab::Indexer &indexer;
-    };
+	};
 
-    Type *resolveTypeof( Type *type, const SymTab::Indexer &indexer ) {
+	Type *resolveTypeof( Type *type, const SymTab::Indexer &indexer ) {
 		ResolveTypeof mutator( indexer );
 		return type->acceptMutator( mutator );
-    }
+	}
 
-    Type *ResolveTypeof::mutate( TypeofType *typeofType ) {
+	Type *ResolveTypeof::mutate( TypeofType *typeofType ) {
 #if 0
 		std::cout << "resolving typeof: ";
@@ -71,5 +71,5 @@
 		} // if
 		return typeofType;
-    }
+	}
 } // namespace ResolvExpr
 
