Index: src/SynTree/Expression.h
===================================================================
--- src/SynTree/Expression.h	(revision 1e30df7c247fd856856ad97d81bc81faecf5bcd5)
+++ src/SynTree/Expression.h	(revision 5408b5919f1f591121d6cdabf6c6b5e605e61e6b)
@@ -168,13 +168,9 @@
 	Declaration * type_decl;
 	std::string name;
-	DeclarationWithType * var;
 
 	QualifiedNameExpr( Declaration * decl, std::string name): Expression(), type_decl(decl), name(name) {}
-	QualifiedNameExpr( const QualifiedNameExpr & other): Expression(other), type_decl(other.type_decl), name(other.name), var(other.var) {}
-	DeclarationWithType * get_var() const { return var; }
-	void set_var( DeclarationWithType * newValue ) { var = newValue; }
+	QualifiedNameExpr( const QualifiedNameExpr & other): Expression(other), type_decl(other.type_decl), name(other.name) {}
 
 	virtual ~QualifiedNameExpr() {
-		delete var;
 		delete type_decl;
 	}
