Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Validate.h

    r6b0b624 r7870799  
    1717#pragma once
    1818
    19 #include "SynTree/SynTree.h"
     19#include <list>  // for list
     20
     21struct CodeLocation;
     22class  Declaration;
     23class  Type;
     24
     25namespace ast {
     26        class Type;
     27        class SymbolTable;
     28}
    2029
    2130namespace SymTab {
     
    2534        void validate( std::list< Declaration * > &translationUnit, bool doDebug = false );
    2635        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 );
    2739} // namespace SymTab
    2840
Note: See TracChangeset for help on using the changeset viewer.