parent
d25834e57b
commit
201419c646
|
|
@ -65,6 +65,7 @@ Kamil Rakoczy
|
||||||
Kanad Kanhere
|
Kanad Kanhere
|
||||||
Keith Colbert
|
Keith Colbert
|
||||||
Kevin Kiningham
|
Kevin Kiningham
|
||||||
|
Kritik Bhimani
|
||||||
Krzysztof Bieganski
|
Krzysztof Bieganski
|
||||||
Kuba Ober
|
Kuba Ober
|
||||||
Larry Doolittle
|
Larry Doolittle
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ VL_DEFINE_DEBUG_FUNCTIONS;
|
||||||
string V3Os::getenvStr(const string& envvar, const string& defaultValue) {
|
string V3Os::getenvStr(const string& envvar, const string& defaultValue) {
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
// Note: MinGW does not offer _dupenv_s
|
// Note: MinGW does not offer _dupenv_s
|
||||||
const char* const envvalue = nullptr;
|
const char* envvalue = nullptr;
|
||||||
_dupenv_s(&envvalue, nullptr, envvar.c_str());
|
_dupenv_s(&envvalue, nullptr, envvar.c_str());
|
||||||
if (envvalue != nullptr) {
|
if (envvalue != nullptr) {
|
||||||
const std::string result{envvalue};
|
const std::string result{envvalue};
|
||||||
|
|
|
||||||
|
|
@ -285,7 +285,7 @@ private:
|
||||||
// Recurse into data type of the signal. The visit methods will add AstTraceDecls.
|
// Recurse into data type of the signal. The visit methods will add AstTraceDecls.
|
||||||
iterate(m_traVscp->varp()->dtypep()->skipRefToEnump());
|
iterate(m_traVscp->varp()->dtypep()->skipRefToEnump());
|
||||||
// Cleanup
|
// 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();
|
pathAdjustor.unwind();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue