Index: src/AST/Convert.cpp
===================================================================
--- src/AST/Convert.cpp	(revision e4d7c1c357a5b1b2a17a980a263be977539b988b)
+++ src/AST/Convert.cpp	(revision db6cdc0f7e39fa424be65d849107ecd0c1e8e90b)
@@ -1876,5 +1876,5 @@
 		auto&& type = GET_ACCEPT_1(type, Type);
 		auto&& attr = GET_ACCEPT_V(attributes, Attribute);
- 
+
 		auto decl = new ast::InlineMemberDecl(
 			old->location,
Index: src/AST/Decl.hpp
===================================================================
--- src/AST/Decl.hpp	(revision e4d7c1c357a5b1b2a17a980a263be977539b988b)
+++ src/AST/Decl.hpp	(revision db6cdc0f7e39fa424be65d849107ecd0c1e8e90b)
@@ -398,4 +398,5 @@
 };
 
+/// Static Assertion `_Static_assert( ... , ... );`
 class StaticAssertDecl : public Decl {
 public:
@@ -412,4 +413,5 @@
 };
 
+/// Inline Member Declaration `inline TypeName;`
 class InlineMemberDecl final : public DeclWithType {
 public:
@@ -429,4 +431,5 @@
 	MUTATE_FRIEND
 };
+
 }
 
Index: src/AST/Pass.hpp
===================================================================
--- src/AST/Pass.hpp	(revision e4d7c1c357a5b1b2a17a980a263be977539b988b)
+++ src/AST/Pass.hpp	(revision db6cdc0f7e39fa424be65d849107ecd0c1e8e90b)
@@ -141,5 +141,5 @@
 	const ast::DirectiveDecl *    visit( const ast::DirectiveDecl        * ) override final;
 	const ast::StaticAssertDecl * visit( const ast::StaticAssertDecl     * ) override final;
-	const ast::DeclWithType	*     visit( const ast::InlineMemberDecl      * ) override final;
+	const ast::DeclWithType	*     visit( const ast::InlineMemberDecl     * ) override final;
 	const ast::CompoundStmt *     visit( const ast::CompoundStmt         * ) override final;
 	const ast::Stmt *             visit( const ast::ExprStmt             * ) override final;
Index: src/AST/Pass.impl.hpp
===================================================================
--- src/AST/Pass.impl.hpp	(revision e4d7c1c357a5b1b2a17a980a263be977539b988b)
+++ src/AST/Pass.impl.hpp	(revision db6cdc0f7e39fa424be65d849107ecd0c1e8e90b)
@@ -810,5 +810,5 @@
 
 //--------------------------------------------------------------------------
-// DeclWithType
+// InlineMemberDecl
 template< typename core_t >
 const ast::DeclWithType * ast::Pass< core_t >::visit( const ast::InlineMemberDecl * node ) {
Index: src/AST/Visitor.hpp
===================================================================
--- src/AST/Visitor.hpp	(revision e4d7c1c357a5b1b2a17a980a263be977539b988b)
+++ src/AST/Visitor.hpp	(revision db6cdc0f7e39fa424be65d849107ecd0c1e8e90b)
@@ -33,5 +33,5 @@
     virtual const ast::DirectiveDecl *    visit( const ast::DirectiveDecl        * ) = 0;
     virtual const ast::StaticAssertDecl * visit( const ast::StaticAssertDecl     * ) = 0;
-    virtual const ast::DeclWithType *     visit( const ast::InlineMemberDecl      * ) = 0;
+    virtual const ast::DeclWithType *     visit( const ast::InlineMemberDecl     * ) = 0;
     virtual const ast::CompoundStmt *     visit( const ast::CompoundStmt         * ) = 0;
     virtual const ast::Stmt *             visit( const ast::ExprStmt             * ) = 0;
