mirror of
https://github.com/verilator/verilator.git
synced 2025-01-19 12:54:02 +00:00
Internals: Fix missing const (#4899)
This commit is contained in:
parent
5d54fa8e6f
commit
25ca1af8b3
@ -12,6 +12,7 @@ Alex Chadwick
|
|||||||
Àlex Torregrosa
|
Àlex Torregrosa
|
||||||
Aliaksei Chapyzhenka
|
Aliaksei Chapyzhenka
|
||||||
Ameya Vikram Singh
|
Ameya Vikram Singh
|
||||||
|
Andrea Calabrese
|
||||||
Andreas Kuster
|
Andreas Kuster
|
||||||
Andrei Kostovski
|
Andrei Kostovski
|
||||||
Andrew Miloradovsky
|
Andrew Miloradovsky
|
||||||
|
@ -66,7 +66,7 @@ public:
|
|||||||
// std::cout<<" Testrun, Computrons,"; // Currently not loaded
|
// std::cout<<" Testrun, Computrons,"; // Currently not loaded
|
||||||
std::cout << " Covered, Rank, RankPts, Filename\n";
|
std::cout << " Covered, Rank, RankPts, Filename\n";
|
||||||
}
|
}
|
||||||
void dump(bool bucketsToo) {
|
void dump(bool bucketsToo) const {
|
||||||
if (testrun() || computrons() != 0.0) { // currently unused // LCOV_EXCL_LINE
|
if (testrun() || computrons() != 0.0) { // currently unused // LCOV_EXCL_LINE
|
||||||
std::cout << " " << std::setw(8) << std::setfill('0') << testrun() // LCOV_EXCL_LINE
|
std::cout << " " << std::setw(8) << std::setfill('0') << testrun() // LCOV_EXCL_LINE
|
||||||
<< ", " << std::setw(7) << std::setfill(' ')
|
<< ", " << std::setw(7) << std::setfill(' ')
|
||||||
|
Loading…
Reference in New Issue
Block a user