Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Type.h

    rcf16f94 rbaf7fee  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Nov 27 17:54:31 2015
    13 // Update Count     : 16
     11// Last Modified By : Rob Schluntz
     12// Last Modified On : Wed Dec 09 14:08:41 2015
     13// Update Count     : 17
    1414//
    1515
     
    188188        virtual ~FunctionType();
    189189
    190         std::list<DeclarationWithType*> & get_returnVals() { return returnVals; }
    191         std::list<DeclarationWithType*> & get_parameters() { return parameters; }
     190        std::list<DeclarationWithType*>& get_returnVals() { return returnVals; }
     191        std::list<DeclarationWithType*>& get_parameters() { return parameters; }
    192192        bool get_isVarArgs() { return isVarArgs; }
    193193        void set_isVarArgs( bool newValue ) { isVarArgs = newValue; }
     
    463463}
    464464
     465std::ostream & operator<<( std::ostream & out, Type * type );
     466
    465467#endif // TYPE_H
    466468
Note: See TracChangeset for help on using the changeset viewer.