Changes in src/AST/Convert.cpp [cc64be1d:6e50a6b]
- File:
-
- 1 edited
-
src/AST/Convert.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
rcc64be1d r6e50a6b 9 9 // Author : Thierry Delisle 10 10 // Created On : Thu May 09 15::37::05 2019 11 // Last Modified By : Andrew Beach12 // Last Modified On : Wed Jul 14 16:15:00202113 // Update Count : 3 711 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Mar 12 18:43:51 2021 13 // Update Count : 36 14 14 // 15 15 … … 1356 1356 } 1357 1357 1358 const ast::Type * visit( const ast::VTableType * node ) override final {1359 return visitType( node, new VTableType{1360 cv( node ),1361 get<Type>().accept1( node->base )1362 } );1363 }1364 1365 1358 const ast::Type * visit( const ast::VarArgsType * node ) override final { 1366 1359 return visitType( node, new VarArgsType{ cv( node ) } ); … … 2806 2799 } 2807 2800 2808 virtual void visit( const VTableType * old ) override final {2809 visitType( old, new ast::VTableType{2810 GET_ACCEPT_1( base, Type ),2811 cv( old )2812 } );2813 }2814 2815 2801 virtual void visit( const AttrType * ) override final { 2816 2802 assertf( false, "AttrType deprecated in new AST." );
Note:
See TracChangeset
for help on using the changeset viewer.