Changes in src/SymTab/Validate.h [7870799:6b0b624]
- File:
-
- 1 edited
-
src/SymTab/Validate.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Validate.h
r7870799 r6b0b624 17 17 #pragma once 18 18 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 } 19 #include "SynTree/SynTree.h" 29 20 30 21 namespace SymTab { … … 34 25 void validate( std::list< Declaration * > &translationUnit, bool doDebug = false ); 35 26 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 );39 27 } // namespace SymTab 40 28
Note:
See TracChangeset
for help on using the changeset viewer.