forked from github/verilator
Fix MSVC compile warning
This commit is contained in:
parent
8b324249b1
commit
56d8ddbaaf
@ -1018,7 +1018,7 @@ void VerilatedScope::configure(VerilatedSyms* symsp, const char* prefixp, const
|
||||
VerilatedImp::scopeInsert(this);
|
||||
}
|
||||
|
||||
void VerilatedScope::exportInsert(bool finalize, const char* namep, void* cb) {
|
||||
void VerilatedScope::exportInsert(int finalize, const char* namep, void* cb) {
|
||||
// Slowpath - called once/scope*export at construction
|
||||
// Insert a exported function into scope table
|
||||
int funcnum = VerilatedImp::exportInsert(namep);
|
||||
|
@ -158,7 +158,7 @@ public: // But internals only - called from VerilatedModule's
|
||||
VerilatedScope();
|
||||
~VerilatedScope();
|
||||
void configure(VerilatedSyms* symsp, const char* prefixp, const char* suffixp);
|
||||
void exportInsert(bool finalize, const char* namep, void* cb);
|
||||
void exportInsert(int finalize, const char* namep, void* cb);
|
||||
// ACCESSORS
|
||||
const char* name() const { return m_namep; }
|
||||
inline VerilatedSyms* symsp() const { return m_symsp; }
|
||||
|
Loading…
Reference in New Issue
Block a user