Changes in / [954908d:3f7e12cb]


Ignore:
Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Concurrency/Keywords.cc

    r954908d r3f7e12cb  
    553553                        ),
    554554                        new ListInit(
    555                                 map_range < std::list<Initializer*> > ( args, [](DeclarationWithType * var ){
     555                                map_range < std::list<Initializer*> > ( args, [this](DeclarationWithType * var ){
    556556                                        Type * type = var->get_type()->clone();
    557557                                        type->set_mutex( false );
  • src/InitTweak/InitTweak.cc

    r954908d r3f7e12cb  
    105105        public:
    106106                InitImpl( Initializer * init ) : init( init ) {}
    107                 virtual ~InitImpl() = default;
    108107
    109108                virtual std::list< Expression * > next( __attribute((unused)) std::list< Expression * > & indices ) {
     
    122121        public:
    123122                ExprImpl( Expression * expr ) : arg( expr ) {}
    124                 virtual ~ExprImpl() { delete arg; }
     123
     124                ~ExprImpl() { delete arg; }
    125125
    126126                virtual std::list< Expression * > next( std::list< Expression * > & indices ) {
Note: See TracChangeset for help on using the changeset viewer.