Question about iteger literals

bearophile via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sun Jun 22 04:25:44 PDT 2014


Uranuz:

> But what @nogc changes in there so I should use this modifier?

@nogc will be present in dmd 2.066, it means that the function 
(and all the functions it calls) can't perform operations that 
cause a call to GC functions.

Sometimes GC operations are a source of performance loss.

Bye,
bearophile


More information about the Digitalmars-d-learn mailing list