Changeset 9aaac6e9 for src/SynTree


Ignore:
Timestamp:
Aug 23, 2017, 5:18:22 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
ec55ed5
Parents:
8135d4c
Message:

Fix prelude warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Declaration.h

    r8135d4c r9aaac6e9  
    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.