3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

Fixed clang (svn trunk) warnings

This commit is contained in:
Clifford Wolf 2015-02-18 14:54:22 +01:00
parent e4cf604ffd
commit f41378af8c
2 changed files with 2 additions and 4 deletions

View file

@ -43,8 +43,6 @@ LibertyAst::~LibertyAst()
LibertyAst *LibertyAst::find(std::string name)
{
if (this == NULL)
return NULL;
for (auto child : children)
if (child->id == name)
return child;