forked from github/verilator
Fix Travis/GCC warnings.
This commit is contained in:
parent
ef04ada12b
commit
02e83da2fa
@ -109,8 +109,8 @@ class VerilatedVpioCb : public VerilatedVpio {
|
|||||||
public:
|
public:
|
||||||
// cppcheck-suppress uninitVar // m_value
|
// cppcheck-suppress uninitVar // m_value
|
||||||
VerilatedVpioCb(const t_cb_data* cbDatap, QData time)
|
VerilatedVpioCb(const t_cb_data* cbDatap, QData time)
|
||||||
: m_cbData{*cbDatap}
|
: m_cbData(*cbDatap)
|
||||||
, m_time{time} {
|
, m_time(time) { // Need () or GCC 4.8 false warning
|
||||||
m_value.format = cbDatap->value ? cbDatap->value->format : vpiSuppressVal;
|
m_value.format = cbDatap->value ? cbDatap->value->format : vpiSuppressVal;
|
||||||
m_cbData.value = &m_value;
|
m_cbData.value = &m_value;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user