MCPcopy Create free account
hub / github.com/chipsalliance/Surelog / deleteValue

Method deleteValue

src/Design/ValuedComponentI.cpp:69–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void ValuedComponentI::deleteValue(std::string_view name,
70 ExprBuilder& exprBuilder) {
71 std::map<std::string, std::pair<Value*, int32_t>>::iterator itr =
72 m_paramMap.find(name);
73 if (itr != m_paramMap.end()) {
74 exprBuilder.deleteValue((*itr).second.first);
75 m_paramMap.erase(itr);
76 }
77}
78
79void ValuedComponentI::forgetValue(std::string_view name) {
80 std::map<std::string, std::pair<Value*, int32_t>>::iterator itr =

Callers 2

elaborateInstance_Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected