Fix Travis/GCC warnings.

This commit is contained in:
Wilson Snyder 2020-08-27 08:47:34 -04:00
parent ef04ada12b
commit 02e83da2fa

View File

@ -109,8 +109,8 @@ class VerilatedVpioCb : public VerilatedVpio {
public:
// cppcheck-suppress uninitVar // m_value
VerilatedVpioCb(const t_cb_data* cbDatap, QData time)
: m_cbData{*cbDatap}
, m_time{time} {
: m_cbData(*cbDatap)
, m_time(time) { // Need () or GCC 4.8 false warning
m_value.format = cbDatap->value ? cbDatap->value->format : vpiSuppressVal;
m_cbData.value = &m_value;
}