|
|
|
|
|
by pjmlp
3884 days ago
|
|
Currently it still relies on the GC. However you can write gc free code regions by marking them as @nogc and the compiler will make sure you only call code that is @nogc compatible. Additionally, there is some ongoing discussion how to improve the language to depend less on the GC. The C++ core guidelines are great, and me being a C++ fan even with its warts, welcome them and all the work the C++ community is doing. However them being opt-in, relying on static analysis and the quality of the code I usually see at companies, which tends to be C with Classes from developers that don't even know what CppCon is, I am not sure how the adoption will be like. |
|