|
|
|
|
|
by pizlonator
612 days ago
|
|
> Hard pass on the garbage collector. Why? > We don't need that You do if you want comprehensive use-after-free protection. > and the minimal GC support that was in the standard has been removed from C++23. Not related to what I'm doing. The support you cite is for users of the language to write garbage collectors "on top" of the language. Fil-C++'s garbage collector is hidden in the implementation's guts, "below" the language. Fil-C++ is compliant to C++ whether C++ says that GC is allowed or not. |
|
C++ is usually used when people care about performance, and a GC interferes with that.