Fix clang warning. No functional change.
This commit is contained in:
parent
9fdb026e95
commit
f6048cc9c1
|
|
@ -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); }
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue