mirror of
https://github.com/verilator/verilator.git
synced 2025-04-04 19:52:39 +00:00
Internals: Fix uninitalized variables (#4636)
This commit is contained in:
parent
a64bdf50fb
commit
4636a7f14b
@ -270,8 +270,8 @@ private:
|
||||
int m_forkDepth = 0; // Number of asynchronous forks we are currently under
|
||||
bool m_afterTimingControl = false; // A timing control might've be executed in the current
|
||||
// process
|
||||
size_t m_id; // Unique ID for a frame
|
||||
size_t m_class_id; // Unique ID for a frame class
|
||||
size_t m_id = 0; // Unique ID for a frame
|
||||
size_t m_class_id = 0; // Unique ID for a frame class
|
||||
|
||||
// METHODS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user