Changes in src/ControlStruct/ExceptDecl.h [11df881:0c730d9]
- File:
-
- 1 edited
-
src/ControlStruct/ExceptDecl.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptDecl.h
r11df881 r0c730d9 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ExceptDecl.h -- Handles declarations of exception types.7 // ExceptDecl.h -- 8 8 // 9 9 // Author : Henry Xue 10 10 // Created On : Tue Jul 20 04:10:50 2021 11 // Last Modified By : Andrew Beach12 // Last Modified On : Tue Jul 12 15:49:00 202213 // Update Count : 211 // Last Modified By : Henry Xue 12 // Last Modified On : Tue Jul 20 04:10:50 2021 13 // Update Count : 1 14 14 // 15 15 … … 20 20 class Declaration; 21 21 22 namespace ast {23 class TranslationUnit;22 namespace ControlStruct { 23 void translateExcept( std::list< Declaration *> & translationUnit ); 24 24 } 25 26 namespace ControlStruct {27 /// Unfold exception declarations into raw structure declarations.28 /// Also builds vtable declarations and converts vtable types.29 void translateExcept( std::list< Declaration *> & translationUnit );30 void translateExcept( ast::TranslationUnit & translationUnit );31 }
Note:
See TracChangeset
for help on using the changeset viewer.