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