digitalmars.D.learn - Regarding the -vgc switch
- bearophile (9/9) Mar 27 2014 I don't fully understand the recently introduced -vgc compiler
- Kagamin (2/2) Mar 28 2014 The phobos code is precompiled, so the compiler doesn't diagnose
- bearophile (4/6) Mar 28 2014 Right. So only allocations of templaes of Phobos can be detected.
I don't fully understand the recently introduced -vgc compiler
switch. Is it expected for this code to not cause any warnings?
void main() {
import std.bitmanip;
BitArray a;
a.length = 100;
}
Bye,
bearophile
Mar 27 2014
The phobos code is precompiled, so the compiler doesn't diagnose it.
Mar 28 2014
Kagamin:The phobos code is precompiled, so the compiler doesn't diagnose it.Right. So only allocations of templaes of Phobos can be detected. Bye, bearophile
Mar 28 2014








"bearophile" <bearophileHUGS lycos.com>