Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Concurrency/KeywordsNew.cpp

    re8616b6 rb230091  
    398398                        new ast::ReferenceType( vtable_object->type, ast::CV::Const ),
    399399                        new ast::SingleInit( location,
    400                                 new ast::VariableExpr( location, vtable_object ) )
     400                                new ast::VariableExpr( location, vtable_object ) ),
     401                        ast::Storage::Classes(),
     402                        ast::Linkage::Cforall
    401403                )
    402404        );
     
    469471                location,
    470472                "this",
    471                 new ast::ReferenceType( new ast::StructInstType( decl ) )
     473                new ast::ReferenceType( new ast::StructInstType( decl ) ),
     474                nullptr,
     475                ast::Storage::Classes(),
     476                ast::Linkage::Cforall
    472477        );
    473478
     
    475480                location,
    476481                "ret",
    477                 new ast::PointerType( new ast::StructInstType( type_decl ) )
     482                new ast::PointerType( new ast::StructInstType( type_decl ) ),
     483                nullptr,
     484                ast::Storage::Classes(),
     485                ast::Linkage::Cforall
    478486        );
    479487
     
    522530                location,
    523531                field_name,
    524                 new ast::StructInstType( type_decl )
     532                new ast::StructInstType( type_decl ),
     533                nullptr,
     534                ast::Storage::Classes(),
     535                ast::Linkage::Cforall
    525536        );
    526537
     
    566577                location,
    567578                "this",
    568                 new ast::ReferenceType( new ast::StructInstType( decl ) )
     579                new ast::ReferenceType( new ast::StructInstType( decl ) ),
     580                nullptr,
     581                ast::Storage::Classes(),
     582                ast::Linkage::Cforall
    569583        );
    570584
     
    10631077                                ) }
    10641078                        )
    1065                 )
     1079                ),
     1080                ast::Storage::Classes(),
     1081                ast::Linkage::Cforall
    10661082        );
    10671083
     
    10911107                                {},
    10921108                                ast::MaybeConstruct
    1093                         )
     1109                        ),
     1110                        ast::Storage::Classes(),
     1111                        ast::Linkage::Cforall
    10941112                ))
    10951113        );
     
    11431161                                }
    11441162                        )
    1145                 )
     1163                ),
     1164                ast::Storage::Classes(),
     1165                ast::Linkage::Cforall
    11461166        );
    11471167
     
    11701190                                {},
    11711191                                ast::MaybeConstruct
    1172                         )
     1192                        ),
     1193                        ast::Storage::Classes(),
     1194                        ast::Linkage::Cforall
    11731195                ))
    11741196        );
     
    12741296                                }
    12751297                        )
    1276                 )
     1298                ),
     1299                ast::Storage::Classes(),
     1300                ast::Linkage::Cforall
    12771301        );
    12781302
     
    13461370                                        {},
    13471371                                        ast::MaybeConstruct
    1348                                 )
     1372                                ),
     1373                                ast::Storage::Classes(),
     1374                                ast::Linkage::Cforall
    13491375                        )
    13501376                )
     
    14871513                                {},
    14881514                                ast::MaybeConstruct
    1489                         )
     1515                        ),
     1516                        ast::Storage::Classes(),
     1517                        ast::Linkage::Cforall
    14901518                )
    14911519        ));
Note: See TracChangeset for help on using the changeset viewer.