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
In C++11, there's basically no excuse for using the delete keyword, ever. Similarly, we should never use new outside of the context of smart pointer construction.
In the event of an exception, the current version of the libdvid-cpp code base will leak memory in some places.
The text was updated successfully, but these errors were encountered:
In C++11, there's basically no excuse for using the
delete
keyword, ever. Similarly, we should never usenew
outside of the context of smart pointer construction.In the event of an exception, the current version of the libdvid-cpp code base will leak memory in some places.
The text was updated successfully, but these errors were encountered: