Changes in src/ControlStruct/ExceptDecl.h [539a8c8:11df881]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/ControlStruct/ExceptDecl.h ¶
r539a8c8 r11df881 16 16 #pragma once 17 17 18 #include <list> // for list 19 20 class Declaration; 21 18 22 namespace ast { 19 23 class TranslationUnit; … … 21 25 22 26 namespace ControlStruct { 23 24 27 /// Unfold exception declarations into raw structure declarations. 25 28 /// Also builds vtable declarations and converts vtable types. 29 void translateExcept( std::list< Declaration *> & translationUnit ); 26 30 void translateExcept( ast::TranslationUnit & translationUnit ); 27 28 31 }
Note: See TracChangeset
for help on using the changeset viewer.