Changeset e8616b6 for src/Concurrency
- Timestamp:
- Jul 26, 2022, 11:35:02 AM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 3992098, 7ce8873
- Parents:
- 5cf1228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/KeywordsNew.cpp
r5cf1228 re8616b6 398 398 new ast::ReferenceType( vtable_object->type, ast::CV::Const ), 399 399 new ast::SingleInit( location, 400 new ast::VariableExpr( location, vtable_object ) ), 401 ast::Storage::Classes(), 402 ast::Linkage::Cforall 400 new ast::VariableExpr( location, vtable_object ) ) 403 401 ) 404 402 ); … … 471 469 location, 472 470 "this", 473 new ast::ReferenceType( new ast::StructInstType( decl ) ), 474 nullptr, 475 ast::Storage::Classes(), 476 ast::Linkage::Cforall 471 new ast::ReferenceType( new ast::StructInstType( decl ) ) 477 472 ); 478 473 … … 480 475 location, 481 476 "ret", 482 new ast::PointerType( new ast::StructInstType( type_decl ) ), 483 nullptr, 484 ast::Storage::Classes(), 485 ast::Linkage::Cforall 477 new ast::PointerType( new ast::StructInstType( type_decl ) ) 486 478 ); 487 479 … … 530 522 location, 531 523 field_name, 532 new ast::StructInstType( type_decl ), 533 nullptr, 534 ast::Storage::Classes(), 535 ast::Linkage::Cforall 524 new ast::StructInstType( type_decl ) 536 525 ); 537 526 … … 577 566 location, 578 567 "this", 579 new ast::ReferenceType( new ast::StructInstType( decl ) ), 580 nullptr, 581 ast::Storage::Classes(), 582 ast::Linkage::Cforall 568 new ast::ReferenceType( new ast::StructInstType( decl ) ) 583 569 ); 584 570 … … 1077 1063 ) } 1078 1064 ) 1079 ), 1080 ast::Storage::Classes(), 1081 ast::Linkage::Cforall 1065 ) 1082 1066 ); 1083 1067 … … 1107 1091 {}, 1108 1092 ast::MaybeConstruct 1109 ), 1110 ast::Storage::Classes(), 1111 ast::Linkage::Cforall 1093 ) 1112 1094 )) 1113 1095 ); … … 1161 1143 } 1162 1144 ) 1163 ), 1164 ast::Storage::Classes(), 1165 ast::Linkage::Cforall 1145 ) 1166 1146 ); 1167 1147 … … 1190 1170 {}, 1191 1171 ast::MaybeConstruct 1192 ), 1193 ast::Storage::Classes(), 1194 ast::Linkage::Cforall 1172 ) 1195 1173 )) 1196 1174 ); … … 1296 1274 } 1297 1275 ) 1298 ), 1299 ast::Storage::Classes(), 1300 ast::Linkage::Cforall 1276 ) 1301 1277 ); 1302 1278 … … 1370 1346 {}, 1371 1347 ast::MaybeConstruct 1372 ), 1373 ast::Storage::Classes(), 1374 ast::Linkage::Cforall 1348 ) 1375 1349 ) 1376 1350 ) … … 1513 1487 {}, 1514 1488 ast::MaybeConstruct 1515 ), 1516 ast::Storage::Classes(), 1517 ast::Linkage::Cforall 1489 ) 1518 1490 ) 1519 1491 ));
Note: See TracChangeset
for help on using the changeset viewer.