Fix MSVC compile warning

This commit is contained in:
Wilson Snyder 2010-02-04 20:31:13 -05:00
parent 8b324249b1
commit 56d8ddbaaf
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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; }