Index: src/Common/CodeLocationTools.cpp
===================================================================
--- src/Common/CodeLocationTools.cpp	(revision 5ce0659eed1c7e50a124c06d47bf11f898fe01e4)
+++ src/Common/CodeLocationTools.cpp	(revision 71806e0f8878eff4daf459af6ea5ef2c730185da)
@@ -111,5 +111,5 @@
     macro(DirectiveDecl, DirectiveDecl) \
     macro(StaticAssertDecl, StaticAssertDecl) \
-    macro(InlineValueDecl, DeclWithType) \
+    macro(InlineMemberDecl, DeclWithType) \
     macro(CompoundStmt, CompoundStmt) \
     macro(ExprStmt, Stmt) \
Index: src/Common/PassVisitor.h
===================================================================
--- src/Common/PassVisitor.h	(revision 5ce0659eed1c7e50a124c06d47bf11f898fe01e4)
+++ src/Common/PassVisitor.h	(revision 71806e0f8878eff4daf459af6ea5ef2c730185da)
@@ -81,6 +81,6 @@
 	virtual void visit( StaticAssertDecl * assertDecl ) override final;
 	virtual void visit( const StaticAssertDecl * assertDecl ) override final;
-	virtual void visit( InlineValueDecl * valueDecl ) override final;
-	virtual void visit( const InlineValueDecl * valueDecl ) override final;
+	virtual void visit( InlineMemberDecl * valueDecl ) override final;
+	virtual void visit( const InlineMemberDecl * valueDecl ) override final;
 
 	virtual void visit( CompoundStmt * compoundStmt ) override final;
@@ -275,5 +275,5 @@
 	virtual DirectiveDecl * mutate( DirectiveDecl * directiveDecl ) override final;
 	virtual StaticAssertDecl * mutate( StaticAssertDecl * assertDecl ) override final;
-	virtual DeclarationWithType * mutate( InlineValueDecl * valueDecl ) override final;
+	virtual DeclarationWithType * mutate( InlineMemberDecl * valueDecl ) override final;
 
 	virtual CompoundStmt * mutate( CompoundStmt * compoundStmt ) override final;
Index: src/Common/PassVisitor.impl.h
===================================================================
--- src/Common/PassVisitor.impl.h	(revision 5ce0659eed1c7e50a124c06d47bf11f898fe01e4)
+++ src/Common/PassVisitor.impl.h	(revision 71806e0f8878eff4daf459af6ea5ef2c730185da)
@@ -1047,7 +1047,7 @@
 
 //--------------------------------------------------------------------------
-// InlineValueDecl
-template< typename pass_type >
-void PassVisitor< pass_type >::visit( InlineValueDecl * node ) {
+// InlineMemberDecl
+template< typename pass_type >
+void PassVisitor< pass_type >::visit( InlineMemberDecl * node ) {
 	VISIT_START( node );
 
@@ -1058,5 +1058,5 @@
 
 template< typename pass_type >
-void PassVisitor< pass_type >::visit( const InlineValueDecl * node ) {
+void PassVisitor< pass_type >::visit( const InlineMemberDecl * node ) {
 	VISIT_START( node );
 
@@ -1067,5 +1067,5 @@
 
 template< typename pass_type >
-DeclarationWithType * PassVisitor< pass_type >::mutate( InlineValueDecl * node ) {
+DeclarationWithType * PassVisitor< pass_type >::mutate( InlineMemberDecl * node ) {
 	MUTATE_START( node );
 
