Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Declaration.h

    r9aaac6e9 rea6332d  
    109109        virtual DeclarationWithType *acceptMutator( Mutator &m ) = 0;
    110110
    111         virtual Type * get_type() const = 0;
     111        virtual Type *get_type() const = 0;
    112112        virtual void set_type(Type *) = 0;
    113113
     
    128128        virtual ~ObjectDecl();
    129129
    130         virtual Type * get_type() const { return type; }
     130        virtual Type *get_type() const { return type; }
    131131        virtual void set_type(Type *newType) { type = newType; }
    132132
     
    155155        virtual ~FunctionDecl();
    156156
    157         Type * get_type() const;
     157        Type *get_type() const;
    158158        virtual void set_type(Type *);
    159159
    160         FunctionType * get_functionType() const { return type; }
     160        FunctionType *get_functionType() const { return type; }
    161161        void set_functionType( FunctionType *newValue ) { type = newValue; }
    162162        CompoundStmt *get_statements() const { return statements; }
Note: See TracChangeset for help on using the changeset viewer.