From 36f41e08a5ac5a3194189c68fc6b8050b98614fa Mon Sep 17 00:00:00 2001 From: HyungKi Jeong <68764729+testdrive-profiling-master@users.noreply.github.com> Date: Mon, 21 Dec 2020 02:18:09 +0900 Subject: [PATCH] Fix to allow inheriting 'VerilatedVcdFile' class. (#2720) --- docs/CONTRIBUTORS | 1 + include/verilated_vcd_c.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/CONTRIBUTORS b/docs/CONTRIBUTORS index be056a619..a64dce238 100644 --- a/docs/CONTRIBUTORS +++ b/docs/CONTRIBUTORS @@ -81,3 +81,4 @@ Yossi Nivin Yuri Victorovich Yutetsu TAKATSUKASA Yves Mathieu +HyungKi Jeong diff --git a/include/verilated_vcd_c.h b/include/verilated_vcd_c.h index 8424bd6e6..daa57a5b4 100644 --- a/include/verilated_vcd_c.h +++ b/include/verilated_vcd_c.h @@ -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: