From 81a727648bec6fe2040d1242d6bf329c0a541883 Mon Sep 17 00:00:00 2001 From: Dragon-Git <42856316+Dragon-Git@users.noreply.github.com> Date: Fri, 3 Jul 2026 10:11:45 +0800 Subject: [PATCH] Fix type --- include/verilated_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/verilated_types.h b/include/verilated_types.h index 6733dda89..493d0c854 100644 --- a/include/verilated_types.h +++ b/include/verilated_types.h @@ -337,7 +337,7 @@ public: ~VlProcess() { if (m_parentp) m_parentp->detach(this); - if (t_currentp == this) t_currentp = m_parentp; + if (t_currentp == this) t_currentp = m_parentp.get(); } void attach(VlProcess* childp) { m_children.insert(childp); }