Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/SymbolTable.hpp

    r99d4584 rd76c588  
    8585
    8686public:
    87         SymbolTable();
     87        explicit SymbolTable();
    8888        ~SymbolTable();
    8989
     
    123123        void addType( const NamedTypeDecl * decl );
    124124        /// Adds a struct declaration to the symbol table by name
    125         void addStruct( const std::string & id );
     125        void addStruct( const std::string &id );
    126126        /// Adds a struct declaration to the symbol table
    127127        void addStruct( const StructDecl * decl );
    128128        /// Adds an enum declaration to the symbol table
    129         void addEnum( const EnumDecl * decl );
     129        void addEnum( const EnumDecl *decl );
    130130        /// Adds a union declaration to the symbol table by name
    131         void addUnion( const std::string & id );
     131        void addUnion( const std::string &id );
    132132        /// Adds a union declaration to the symbol table
    133133        void addUnion( const UnionDecl * decl );
Note: See TracChangeset for help on using the changeset viewer.