| 17 | namespace chi { |
| 18 | |
| 19 | GraphStruct::GraphStruct(GraphModule& mod, std::string name) |
| 20 | : mModule{&mod}, mContext{&mod.context()}, mName{std::move(name)} {} |
| 21 | |
| 22 | std::vector<NodeInstance*> GraphStruct::setName(std::string newName, bool updateReferences) { |
| 23 | assert(!newName.empty() && "Cannot pass an empty name to GraphStruct::setName"); |
nothing calls this directly
no outgoing calls
no test coverage detected