home *** CD-ROM | disk | FTP | other *** search
-
- Message send syntax has been changed from
-
- [ expr selector ... ]
- to
- [ expr_no_commas selector ... ]
-
- so you can no longer have a comma expression as the receiver. That
- must be explicitly enclosed in parentheses, like
-
- [ ( expr ) selector ... ]
-
- ;; maybe fixed
-
-
- Initializer syntax is different in C++ and C.
-
- C has
-
- int x[10] = { [4] = 2, [6] = 3 };
-
- but C++ has
-
- int x[10] = { [4] 2, [6] 3 };
-
-