| 341 | } |
| 342 | |
| 343 | void GraphFunction::removeExecOutput(size_t idx) { |
| 344 | // invalidate the cache |
| 345 | module().updateLastEditTime(); |
| 346 | |
| 347 | if (idx < mExecOutputs.size()) { mExecOutputs.erase(mExecOutputs.begin() + idx); } |
| 348 | updateExits(); |
| 349 | } |
| 350 | |
| 351 | void GraphFunction::renameExecOutput(size_t idx, std::string name) { |
| 352 | // invalidate the cache |
nothing calls this directly
no test coverage detected