Changeset 39156ed for src/SynTree


Ignore:
Timestamp:
Jul 10, 2019, 5:59:07 PM (5 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
1d760934
Parents:
256728f
Message:

add assignment declarations using "default" implementation required by g++-9

Location:
src/SynTree
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/BaseSyntaxNode.h

    r256728f r39156ed  
    99// Author           : Thierry Delisle
    1010// Created On       : Tue Feb 14 07:44:20 2017
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Thr Aug 17 13:44:00
    13 // Update Count     : 1
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Wed Jul 10 16:13:49 2019
     13// Update Count     : 4
    1414//
    1515
     
    2525class BaseSyntaxNode {
    2626  public:
    27   static Stats::Counters::SimpleCounter* new_nodes;
     27        static Stats::Counters::SimpleCounter* new_nodes;
    2828
    2929        CodeLocation location;
    3030
    31   BaseSyntaxNode() { ++*new_nodes; }
    32   BaseSyntaxNode( const BaseSyntaxNode& o ) : location(o.location) { ++*new_nodes; }
    33 
     31        BaseSyntaxNode() { ++*new_nodes; }
     32        BaseSyntaxNode( const BaseSyntaxNode & o ) : location(o.location) { ++*new_nodes; }
     33        BaseSyntaxNode & operator=( const BaseSyntaxNode & ) = default;
     34       
    3435        virtual ~BaseSyntaxNode() {}
    3536
     
    3738        virtual void accept( Visitor & v ) = 0;
    3839        virtual BaseSyntaxNode * acceptMutator( Mutator & m ) = 0;
    39   /// Notes:
    40   /// * each node is responsible for indenting its children.
    41   /// * Expressions should not finish with a newline, since the expression's parent has better information.
     40        /// Notes:
     41        /// * each node is responsible for indenting its children.
     42        /// * Expressions should not finish with a newline, since the expression's parent has better information.
    4243        virtual void print( std::ostream & os, Indenter indent = {} ) const = 0;
    4344};
  • src/SynTree/Constant.h

    r256728f r39156ed  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Fri Spt 28 14:48:00 2018
    13 // Update Count     : 18
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Wed Jul 10 15:57:38 2019
     13// Update Count     : 19
    1414//
    1515
     
    3030        Constant( Type * type, std::string rep, std::optional<unsigned long long> i );
    3131        Constant( const Constant & other );
     32        Constant & operator=( const Constant & ) = default;
    3233        virtual ~Constant();
    3334
Note: See TracChangeset for help on using the changeset viewer.