Changes in src/AST/Convert.hpp [a056f56:74dbbf6]
- File:
-
- 1 edited
-
src/AST/Convert.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.hpp
ra056f56 r74dbbf6 18 18 #include <list> 19 19 20 #include "AST/Node.hpp" 21 20 22 class Declaration; 21 23 namespace ast { 22 struct TranslationUnit;24 class Decl; 23 25 }; 24 26 25 std::list< Declaration * > convert( const ast::TranslationUnit&& translationUnit );26 ast::TranslationUnitconvert( const std::list< Declaration * > && translationUnit );27 std::list< Declaration * > convert( const std::list< ast::ptr< ast::Decl > > && translationUnit ); 28 std::list< ast::ptr< ast::Decl > > convert( const std::list< Declaration * > && translationUnit );
Note:
See TracChangeset
for help on using the changeset viewer.