forked from github/verilator
Fix older GCC compiler error.
This commit is contained in:
parent
a57826b125
commit
ae448e5ef9
@ -55,6 +55,12 @@ inline size_t vl_hash_bytes(const void* vbufp, size_t nbytes) {
|
|||||||
return hash;
|
return hash;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <> inline size_t vl_hash<int>::operator()(const int& k) const { return k; }
|
||||||
|
|
||||||
|
template <> inline bool vl_equal_to<int>::operator()(const int& a, const int& b) const {
|
||||||
|
return a == b;
|
||||||
|
}
|
||||||
|
|
||||||
template <> inline size_t vl_hash<unsigned int>::operator()(const unsigned int& k) const {
|
template <> inline size_t vl_hash<unsigned int>::operator()(const unsigned int& k) const {
|
||||||
return k;
|
return k;
|
||||||
}
|
}
|
||||||
|
@ -1519,8 +1519,8 @@ void AstBegin::dump(std::ostream& str) const {
|
|||||||
}
|
}
|
||||||
void AstCoverDecl::dump(std::ostream& str) const {
|
void AstCoverDecl::dump(std::ostream& str) const {
|
||||||
this->AstNode::dump(str);
|
this->AstNode::dump(str);
|
||||||
if (!page().empty()) str << " page="<<page();
|
if (!page().empty()) str << " page=" << page();
|
||||||
if (!linescov().empty()) str << " lc="<<linescov();
|
if (!linescov().empty()) str << " lc=" << linescov();
|
||||||
if (this->dataDeclNullp()) {
|
if (this->dataDeclNullp()) {
|
||||||
str << " -> ";
|
str << " -> ";
|
||||||
this->dataDeclNullp()->dump(str);
|
this->dataDeclNullp()->dump(str);
|
||||||
|
Loading…
Reference in New Issue
Block a user