Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Validate.h

    r6b0b624 rc8e4d2f8  
    1717#pragma once
    1818
    19 #include "SynTree/SynTree.h"
     19#include <list>  // for list
     20
     21class Declaration;
     22class Type;
     23
     24namespace ast {
     25        class Type;
     26        class SymbolTable;
     27}
    2028
    2129namespace SymTab {
     
    2533        void validate( std::list< Declaration * > &translationUnit, bool doDebug = false );
    2634        void validateType( Type *type, const Indexer *indexer );
     35
     36        const ast::Type * validateType( const ast::Type * type, const ast::SymbolTable & symtab );
    2737} // namespace SymTab
    2838
Note: See TracChangeset for help on using the changeset viewer.