Fix Travis/GCC warnings. For VPI/DPI still avoid C++11.

This commit is contained in:
Wilson Snyder
2020-08-24 18:49:36 -04:00
parent be8f1a25c6
commit 3ad3944f2c
27 changed files with 93 additions and 93 deletions
+1 -1
View File
@@ -1758,7 +1758,7 @@ static const char* formatBinary(int nBits, vluint32_t bits) {
VlReadMem::VlReadMem(bool hex, int bits, const std::string& filename, QData start, QData end)
: m_hex{hex}
, m_bits{bits}
, m_filename{filename}
, m_filename(filename) // Need () or GCC 4.8 false warning
, m_end{end}
, m_addr{start}
, m_linenum{0} {