Re: Function definition within function

2010-05-02 Thread Nicholas Sherlock
that not only defines a function within another function as also is the nesting of functions. Please what is wrong? See: http://gcc.gnu.org/onlinedocs/gcc-4.5.0/gcc/Nested-Functions.html#Nested-Functions Or: http://tinyurl.com/243vdlm Cheers, Nicholas Sherlock

Re: Bad mailing list index?

2009-12-11 Thread Nicholas Sherlock
a Last-Modified time but no Expires header, so some aggressive proxies, browsers and other caches could end up caching it for a long time. Adding an Expires header set for the 1st of the next month would be a good idea. Cheers, Nicholas Sherlock

Re: Order To New Zealand

2009-07-18 Thread Nicholas Sherlock
. Thank you Yours Sincerely, Bryan James These scams are coming from New Zealand now too?? Very disappointed. Nicholas Sherlock, New Zealand

Re: GCC Wiki help needed for CompileFarm page

2008-12-26 Thread Nicholas Sherlock
the solution would be simple. Put: #REDIRECT [[GCC Compile Farm Project]] on CompileFarm so that anyone going there would immediately be redirected to GCC Compile Farm Project. Cheers, Nicholas Sherlock

Re: size of array is too large

2008-07-17 Thread Nicholas Sherlock
]; }; This works fine. If your long is 32-bit, then your first array covers more memory than the range of a signed 16-bit integer, whereas the second set of arrays doesn't hit this limitation. Perhaps the limitation is forced on GCC by the limitations of your target. Cheers, Nicholas Sherlock