Fix MSVC compiler errors (#3742) (#3746)

This commit is contained in:
Kritik Bhimani 2022-11-13 19:05:06 +05:30 committed by GitHub
parent d25834e57b
commit 201419c646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -65,6 +65,7 @@ Kamil Rakoczy
Kanad Kanhere
Keith Colbert
Kevin Kiningham
Kritik Bhimani
Krzysztof Bieganski
Kuba Ober
Larry Doolittle

View File

@ -78,7 +78,7 @@ VL_DEFINE_DEBUG_FUNCTIONS;
string V3Os::getenvStr(const string& envvar, const string& defaultValue) {
#if defined(_MSC_VER)
// Note: MinGW does not offer _dupenv_s
const char* const envvalue = nullptr;
const char* envvalue = nullptr;
_dupenv_s(&envvalue, nullptr, envvar.c_str());
if (envvalue != nullptr) {
const std::string result{envvalue};

View File

@ -285,7 +285,7 @@ private:
// Recurse into data type of the signal. The visit methods will add AstTraceDecls.
iterate(m_traVscp->varp()->dtypep()->skipRefToEnump());
// Cleanup
if (m_traValuep) VL_DO_DANGLING(m_traValuep->deleteTree(), m_traValuep);
if (m_traValuep) VL_DO_CLEAR(m_traValuep->deleteTree(), m_traValuep = nullptr);
}
}
pathAdjustor.unwind();