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
C++ is a lot faster, and if you use it correctly it can be a lot more memory safe than Rust. All the memes around C++ not being memory safe are related to the dangerous and improper usage of the C++ language (such as using malloc instead of the recommended std::shared_ptr, which can automatically release the resources, and then not calling free on the malloced object). See #694 for my PR to rewrite to C++.
No description provided.
The text was updated successfully, but these errors were encountered: