Fix to allow inheriting 'VerilatedVcdFile' class. (#2720)

This commit is contained in:
HyungKi Jeong 2020-12-21 02:18:09 +09:00 committed by GitHub
parent 28ff71b1bf
commit 36f41e08a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -81,3 +81,4 @@ Yossi Nivin
Yuri Victorovich
Yutetsu TAKATSUKASA
Yves Mathieu
HyungKi Jeong

View File

@ -34,7 +34,7 @@ class VerilatedVcd;
// VerilatedFile
/// File handling routines, which can be overrode for e.g. socket I/O
class VerilatedVcdFile final {
class VerilatedVcdFile VL_NOT_FINAL {
private:
int m_fd = 0; ///< File descriptor we're writing to
public: