Index: src/AST/Convert.cpp
===================================================================
--- src/AST/Convert.cpp	(revision 3945abe88b7b9b2808b8106d9c47bb28a32ac879)
+++ src/AST/Convert.cpp	(revision d2278e9bd5880b8fddae1c58dd1056df8e64d834)
@@ -9,7 +9,7 @@
 // Author           : Thierry Delisle
 // Created On       : Thu May 09 15::37::05 2019
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Mar 12 18:43:51 2021
-// Update Count     : 36
+// Last Modified By : Andrew Beach
+// Last Modified On : Wed Jul 14 16:15:00 2021
+// Update Count     : 37
 //
 
@@ -1356,4 +1356,11 @@
 	}
 
+	const ast::Type * visit( const ast::VTableType * node ) override final {
+		return visitType( node, new VTableType{
+			cv( node ),
+			get<Type>().accept1( node->base )
+		} );
+	}
+
 	const ast::Type * visit( const ast::VarArgsType * node ) override final {
 		return visitType( node, new VarArgsType{ cv( node ) } );
@@ -2799,4 +2806,11 @@
 	}
 
+	virtual void visit( const VTableType * old ) override final {
+		visitType( old, new ast::VTableType{
+			GET_ACCEPT_1( base, Type ),
+			cv( old )
+		} );
+	}
+
 	virtual void visit( const AttrType * ) override final {
 		assertf( false, "AttrType deprecated in new AST." );
