Internals: Fix uninitalized variables (#4636)

This commit is contained in:
Wilson Snyder 2023-11-11 14:58:54 -05:00
parent a64bdf50fb
commit 4636a7f14b

View File

@ -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