Changes in src/Concurrency/KeywordsNew.cpp [e8616b6:b230091]
- File:
-
- 1 edited
-
src/Concurrency/KeywordsNew.cpp (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/KeywordsNew.cpp
re8616b6 rb230091 398 398 new ast::ReferenceType( vtable_object->type, ast::CV::Const ), 399 399 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 401 403 ) 402 404 ); … … 469 471 location, 470 472 "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 472 477 ); 473 478 … … 475 480 location, 476 481 "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 478 486 ); 479 487 … … 522 530 location, 523 531 field_name, 524 new ast::StructInstType( type_decl ) 532 new ast::StructInstType( type_decl ), 533 nullptr, 534 ast::Storage::Classes(), 535 ast::Linkage::Cforall 525 536 ); 526 537 … … 566 577 location, 567 578 "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 569 583 ); 570 584 … … 1063 1077 ) } 1064 1078 ) 1065 ) 1079 ), 1080 ast::Storage::Classes(), 1081 ast::Linkage::Cforall 1066 1082 ); 1067 1083 … … 1091 1107 {}, 1092 1108 ast::MaybeConstruct 1093 ) 1109 ), 1110 ast::Storage::Classes(), 1111 ast::Linkage::Cforall 1094 1112 )) 1095 1113 ); … … 1143 1161 } 1144 1162 ) 1145 ) 1163 ), 1164 ast::Storage::Classes(), 1165 ast::Linkage::Cforall 1146 1166 ); 1147 1167 … … 1170 1190 {}, 1171 1191 ast::MaybeConstruct 1172 ) 1192 ), 1193 ast::Storage::Classes(), 1194 ast::Linkage::Cforall 1173 1195 )) 1174 1196 ); … … 1274 1296 } 1275 1297 ) 1276 ) 1298 ), 1299 ast::Storage::Classes(), 1300 ast::Linkage::Cforall 1277 1301 ); 1278 1302 … … 1346 1370 {}, 1347 1371 ast::MaybeConstruct 1348 ) 1372 ), 1373 ast::Storage::Classes(), 1374 ast::Linkage::Cforall 1349 1375 ) 1350 1376 ) … … 1487 1513 {}, 1488 1514 ast::MaybeConstruct 1489 ) 1515 ), 1516 ast::Storage::Classes(), 1517 ast::Linkage::Cforall 1490 1518 ) 1491 1519 ));
Note:
See TracChangeset
for help on using the changeset viewer.