Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SymTab/Indexer.h

    r6b0b624 r30f9072  
    1010// Created On       : Sun May 17 21:38:55 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Jul 22 09:46:34 2017
    13 // Update Count     : 7
     12// Last Modified On : Wed Mar  2 17:34:14 2016
     13// Update Count     : 6
    1414//
    1515
    16 #pragma once
     16#ifndef INDEXER_H
     17#define INDEXER_H
    1718
    18 #include <list>
    19 #include <string>
     19#include <iosfwd>             // for ostream
     20#include <list>               // for list
     21#include <string>             // for string
    2022
    21 #include "SynTree/Visitor.h"
     23#include "SynTree/Visitor.h"  // for Visitor
     24#include "SynTree/SynTree.h"  // for AST nodes
    2225
    2326namespace SymTab {
     
    125128
    126129                struct Impl;
     130
    127131                Impl *tables;         ///< Copy-on-write instance of table data structure
    128132                unsigned long scope;  ///< Scope index of this pointer
     
    144148} // namespace SymTab
    145149
     150#endif // INDEXER_H
     151
    146152// Local Variables: //
    147153// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.