Skip to content

Commit e92bfcc

Browse files
committed
mention deprecation of ++/-- in the changelog.
1 parent be53728 commit e92bfcc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Latest
22
------
33

4+
* The ++ and -- operators have been deprecated, and are slated to be removed in
5+
Swift 3.0. As a replacement, please use "x += 1" on integer or floating point
6+
types, and "x = x.successor()" on Index types.
7+
48
* The operator identifier lexer grammar has been revised to simplify the rules
59
for operators that start with a dot ("."). The new rule is that an operator
610
that starts with a dot may contain other dots in it, but operators that start

0 commit comments

Comments
 (0)