Index: src/SynTree/Initializer.h
===================================================================
--- src/SynTree/Initializer.h	(revision 168c00725d596f275bf593f63791743073a1778b)
+++ src/SynTree/Initializer.h	(revision 93afb9651196fc4851e5fbfb2fe08f22c435275f)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Tue Apr 12 13:49:13 2016
-// Update Count     : 19
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu Mar 23 16:12:42 2017
+// Update Count     : 20
 //
 
@@ -70,6 +70,6 @@
 	void set_value( Expression *newValue ) { value = newValue; }
 
+	std::list<Expression *> &get_designators() { return designators; }
 	void set_designators( std::list<Expression *> &newValue ) { designators = newValue; }
-	std::list<Expression *> &get_designators() { return designators; }
 
 	virtual SingleInit *clone() const { return new SingleInit( *this); }
Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision 168c00725d596f275bf593f63791743073a1778b)
+++ src/SynTree/Type.h	(revision 93afb9651196fc4851e5fbfb2fe08f22c435275f)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Mar 17 09:04:03 2017
-// Update Count     : 147
+// Last Modified On : Thu Mar 23 16:16:36 2017
+// Update Count     : 149
 //
 
@@ -331,4 +331,6 @@
 	virtual Type *acceptMutator( Mutator & m ) = 0;
 	virtual void print( std::ostream & os, int indent = 0 ) const;
+
+	virtual void lookup( const std::string & name, std::list< Declaration* > & foundDecls ) const {}
   protected:
 	virtual std::string typeString() const = 0;
