Fix clang warning. No functional change.

This commit is contained in:
Wilson Snyder 2020-04-05 08:22:51 -04:00
parent 9fdb026e95
commit f6048cc9c1
1 changed files with 1 additions and 3 deletions

View File

@ -75,7 +75,6 @@ class CombCallVisitor : CombBaseVisitor {
// Find all CCALLS of each CFUNC, so that we can later rename them // Find all CCALLS of each CFUNC, so that we can later rename them
private: private:
// NODE STATE // NODE STATE
bool m_find; // Find mode vs. delete mode
typedef std::multimap<AstCFunc*,AstCCall*> CallMmap; typedef std::multimap<AstCFunc*,AstCCall*> CallMmap;
CallMmap m_callMmap; // Associative array of {function}{call} CallMmap m_callMmap; // Associative array of {function}{call}
// METHODS // METHODS
@ -137,8 +136,7 @@ private:
public: public:
// CONSTRUCTORS // CONSTRUCTORS
CombCallVisitor() CombCallVisitor() {}
: m_find(false) {}
virtual ~CombCallVisitor() {} virtual ~CombCallVisitor() {}
void main(AstNetlist* nodep) { iterate(nodep); } void main(AstNetlist* nodep) { iterate(nodep); }
}; };