| 312 | } |
| 313 | |
| 314 | void GraphFunction::removeExecInput(size_t idx) { |
| 315 | // invalidate the cache |
| 316 | module().updateLastEditTime(); |
| 317 | |
| 318 | if (idx < mExecInputs.size()) { mExecInputs.erase(mExecInputs.begin() + idx); } |
| 319 | updateEntries(); |
| 320 | } |
| 321 | |
| 322 | void GraphFunction::renameExecInput(size_t idx, std::string name) { |
| 323 | // invalidate the cache |
nothing calls this directly
no test coverage detected