On Sun, 25 Oct 2009 12:33:13 +0200, bearophile <[email protected]> wrote:

- Make them return void, so they can't be used as expressions like this:
y = x++;
foo(x--);
You have to use them as:
x++; y = x;
x--; foo(x);
(So ++ and -- become similar to the Inc() and Dec() functions of Pascal).

No way. I've written items[itemCount++] way too often to give that up.

--
Best regards,
 Vladimir                          mailto:[email protected]

Reply via email to