Changes in src/CodeGen/FixNames.h [61efa42:11df881]
- File:
-
- 1 edited
-
src/CodeGen/FixNames.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/FixNames.h
r61efa42 r11df881 16 16 #pragma once 17 17 18 #include <list> // for list 19 20 class Declaration; 18 21 namespace ast { 19 22 class TranslationUnit; … … 21 24 22 25 namespace CodeGen { 23 26 /// mangles object and function names 27 void fixNames( std::list< Declaration* > & translationUnit ); 24 28 /// Sets scope levels and fills in main's default return. 25 29 void fixNames( ast::TranslationUnit & translationUnit ); 26 27 30 } // namespace CodeGen 28 31
Note:
See TracChangeset
for help on using the changeset viewer.