Changes in src/SymTab/Validate.h [6b0b624:7870799]
- File:
-
- 1 edited
-
src/SymTab/Validate.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Validate.h
r6b0b624 r7870799 17 17 #pragma once 18 18 19 #include "SynTree/SynTree.h" 19 #include <list> // for list 20 21 struct CodeLocation; 22 class Declaration; 23 class Type; 24 25 namespace ast { 26 class Type; 27 class SymbolTable; 28 } 20 29 21 30 namespace SymTab { … … 25 34 void validate( std::list< Declaration * > &translationUnit, bool doDebug = false ); 26 35 void validateType( Type *type, const Indexer *indexer ); 36 37 const ast::Type * validateType( 38 const CodeLocation & loc, const ast::Type * type, const ast::SymbolTable & symtab ); 27 39 } // namespace SymTab 28 40
Note:
See TracChangeset
for help on using the changeset viewer.