what is exactly stack stomp "-gx" new switch ?

Ali Çehreli via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Tue Jul 15 17:12:54 PDT 2014


On 07/15/2014 04:56 PM, Ali Çehreli wrote:

 >      char buffer[100];
[...]
 >      char buffer[100] = void;

Before others point out, those are in C syntax by mistake. :) They 
should preferably be:

     char[100] buffer;
[...]
     char[100] buffer = void;

Ali



More information about the Digitalmars-d-learn mailing list