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
We had a bug in vector which lead to memory leaks. The problem was that a user could throw from inside a constructor, and then the destructor would never be run. This was caused by removing the base class. We also removed base classes from basic_string and deque, so we should add tests for them too and fix memory leaks if we find any.
The text was updated successfully, but these errors were encountered:
We had a bug in
vector
which lead to memory leaks. The problem was that a user could throw from inside a constructor, and then the destructor would never be run. This was caused by removing the base class. We also removed base classes frombasic_string
anddeque
, so we should add tests for them too and fix memory leaks if we find any.The text was updated successfully, but these errors were encountered: