File tree Expand file tree Collapse file tree 3 files changed +10
-15
lines changed Expand file tree Collapse file tree 3 files changed +10
-15
lines changed Original file line number Diff line number Diff line change 1
1
2
- ==================================================== Removed Decls ====================================================
2
+ /* Removed Decls */
3
3
4
- ==================================================== Moved Decls ====================================================
4
+ /* Moved Decls */
5
5
6
- ==================================================== Renamed Decls ====================================================
6
+ /* Renamed Decls */
7
7
8
- ==================================================== Type Changes ====================================================
8
+ /* Type Changes */
9
9
Constructor S1.init(_:) has 1st parameter type change from Int to Double
10
10
Func C1.foo2(_:) has 1st parameter type change from Int to () -> ()
11
11
12
- ==================================================== Decl Attribute changes ====================================================
12
+ /* Decl Attribute changes */
13
13
Var C1.CIIns1 changes from weak to strong
14
14
Var C1.CIIns2 changes from strong to weak
15
15
Func C1.foo1() is now not static
Original file line number Diff line number Diff line change 1
-
2
- ==================================================== Removed Decls ====================================================
1
+ /* Removed declarations */
3
2
Protocol BidirectionalIndexable has been removed (deprecated)
4
3
Protocol ExpressibleByStringInterpolation has been removed (deprecated)
5
4
Protocol Indexable has been removed (deprecated)
@@ -8,15 +7,11 @@ Protocol MutableIndexable has been removed (deprecated)
8
7
Protocol RandomAccessIndexable has been removed (deprecated)
9
8
Protocol RangeReplaceableIndexable has been removed (deprecated)
10
9
11
- ==================================================== Moved Decls ====================================================
10
+ /* Moved declarations */
12
11
// rdar://28456614 Swift 3 breaking change: static function 'abs' removed from Double/Float/Float80/CGFloat
13
12
Func Double.abs(_:) has been moved to Func abs(_:)
14
13
Func Float.abs(_:) has been moved to Func abs(_:)
15
14
Func Float80.abs(_:) has been moved to Func abs(_:)
16
15
17
- ==================================================== Renamed Decls ====================================================
18
-
19
- ==================================================== Type Changes ====================================================
16
+ /* Function type change */
20
17
Func UnsafePointer.withMemoryRebound(to:capacity:_:) has 3rd parameter type change from (UnsafeMutablePointer<T>) throws -> Result to (UnsafePointer<T>) throws -> Result
21
-
22
- ==================================================== Decl Attribute changes ====================================================
Original file line number Diff line number Diff line change @@ -2700,9 +2700,9 @@ class DiagnosisEmitter : public SDKNodeVisitor {
2700
2700
struct DiagBag {
2701
2701
std::vector<T> Diags;
2702
2702
~DiagBag () {
2703
- llvm::outs () << " \n ==================================================== " ;
2703
+ llvm::outs () << " \n /* " ;
2704
2704
T::theme (llvm::outs ());
2705
- llvm::outs () << " ==================================================== \n " ;
2705
+ llvm::outs () << " */ \n " ;
2706
2706
removeRedundantAndSort (Diags);
2707
2707
std::for_each (Diags.begin (), Diags.end (), [](T &Diag) {
2708
2708
Diag.output ();
You can’t perform that action at this time.
0 commit comments