You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the following member variables
Event *next;
Event *prev;
are changed to this in: class Event : public Class
Event *next = nullptr;
Event *prev = nullptr;
You get the following error in code: ev->prev was nullptr
The text was updated successfully, but these errors were encountered:
If the following member variables
Event *next;
Event *prev;
are changed to this in: class Event : public Class
Event *next = nullptr;
Event *prev = nullptr;
You get the following error in code: ev->prev was nullptr
The text was updated successfully, but these errors were encountered: