C++11 cleanup

This commit is contained in:
Geza Lore
2023-10-28 11:26:48 +01:00
parent d8420413b7
commit 30318a6654
19 changed files with 57 additions and 74 deletions
+1 -1
View File
@@ -182,7 +182,7 @@ private:
if (it != m_randcDtypes.end()) return it->second;
AstCDType* newp = new AstCDType{fl, name};
v3Global.rootp()->typeTablep()->addTypesp(newp);
m_randcDtypes.emplace(std::make_pair(name, newp));
m_randcDtypes.emplace(name, newp);
return newp;
}