Changes in src/GenPoly/Box.cc [6312b1c:07de76b]
- File:
-
- 1 edited
-
src/GenPoly/Box.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Box.cc
r6312b1c r07de76b 1525 1525 stmtsToAddBefore.push_back( new DeclStmt( newBuf ) ); 1526 1526 1527 // if the object has a cleanup attribute, the cleanup should be on the buffer, not the pointer1528 auto matchAndMove = [newBuf](Attribute * attr){1529 if(attr->name == "cleanup") {1530 newBuf->attributes.push_back(attr);1531 return true;1532 }1533 return false;1534 };1535 1536 objectDecl->attributes.remove_if(matchAndMove);1537 1538 1527 delete objectDecl->get_init(); 1539 1528 objectDecl->set_init( new SingleInit( new VariableExpr( newBuf ) ) );
Note:
See TracChangeset
for help on using the changeset viewer.