Ignore:
Timestamp:
May 14, 2015, 1:44:55 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
4bf5298
Parents:
d4778a6
Message:

add inline and attribute qualifiers, cfa.y comment formatting, fix error message in isIntegralType

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/SynTree/Declaration.h

    rd4778a6 rc11e31c  
    1212    enum StorageClass { 
    1313        NoStorageClass,
     14        Extern,
     15        Static,
    1416        Auto,
    15         Static,
    16         Extern,
    1717        Register,
    18         Fortran
     18        Inline,
     19        Fortran,
    1920    }; 
    2021
     
    108109    CompoundStmt *get_statements() const { return statements; }
    109110    void set_statements( CompoundStmt *newValue ) { statements = newValue; }
    110     bool get_isInline() const { return isInline; }
    111     void set_isInline( bool newValue ) { isInline = newValue; }
     111//    bool get_isInline() const { return isInline; }
     112//    void set_isInline( bool newValue ) { isInline = newValue; }
    112113    std::list< std::string >& get_oldIdents() { return oldIdents; }
    113114    std::list< Declaration* >& get_oldDecls() { return oldDecls; }
Note: See TracChangeset for help on using the changeset viewer.