Fix GCC warnings

This commit is contained in:
Wilson Snyder
2020-08-20 08:12:06 -04:00
parent 816c5e0dc9
commit 14604a24d6
+1 -1
View File
@@ -107,7 +107,7 @@ class CUseDTypeVisitor : public AstNVisitor {
public:
// CONSTRUCTORS
explicit CUseDTypeVisitor(AstNodeModule* nodep, CUseState& stater)
: m_stater{stater} { // Need () or GCC 4.8 false warning
: m_stater(stater) { // Need () or GCC 4.8 false warning
iterate(nodep);
}
virtual ~CUseDTypeVisitor() override {}