Index: src/SynTree/Declaration.h
===================================================================
--- src/SynTree/Declaration.h	(revision 71806e0f8878eff4daf459af6ea5ef2c730185da)
+++ src/SynTree/Declaration.h	(revision b49310fe322271ebf1749bbfd961359b03d7c1ef)
@@ -340,4 +340,5 @@
   	bool isTyped;
 	Type * base;
+	enum EnumHiding { Visible, Hide } hide;
 
 	EnumDecl( const std::string & name,
@@ -345,5 +346,5 @@
 	  bool isTyped = false, LinkageSpec::Spec linkage = LinkageSpec::Cforall,
 	  Type * baseType = nullptr ) 
-	  : Parent( name, attributes, linkage ),isTyped(isTyped), base( baseType ) {}
+	  : Parent( name, attributes, linkage ), isTyped(isTyped), base( baseType ) {}
 	EnumDecl( const EnumDecl & other ) 
 	  : Parent( other ), isTyped( other.isTyped), base( other.base ) {}
