File tree 4 files changed +14
-15
lines changed
4 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ struct _NSCursorMirror : _MirrorType {
30
30
_preconditionFailure ( " _MirrorType access out of bounds " )
31
31
}
32
32
33
- var summary : String { return " " }
33
+ var summary : String { return " " }
34
34
35
35
var quickLookObject : PlaygroundQuickLook ? {
36
36
return . Some( . Image( _value. image) )
@@ -64,7 +64,7 @@ struct _NSViewMirror : _MirrorType {
64
64
_preconditionFailure ( " _MirrorType access out of bounds " )
65
65
}
66
66
67
- var summary : String { get { return " " } }
67
+ var summary : String { get { return " " } }
68
68
69
69
var quickLookObject : PlaygroundQuickLook ? { get {
70
70
// adapted from the Xcode QuickLooks implementation
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ extension CMTime {
67
67
68
68
public func convertScale( newTimescale: Int32 , method: CMTimeRoundingMethod )
69
69
-> CMTime {
70
-
71
70
return CMTimeConvertScale ( self , newTimescale, method)
72
71
}
73
72
}
Original file line number Diff line number Diff line change @@ -277,7 +277,7 @@ extension String {
277
277
/// Returns a capitalized representation of the `String`
278
278
/// using the specified locale.
279
279
@warn_unused_result
280
- public func capitalizedStringWithLocale( locale: NSLocale ? ) -> String {
280
+ public func capitalizedStringWithLocale( locale: NSLocale ? ) -> String {
281
281
return _ns. capitalizedStringWithLocale ( locale) as String
282
282
}
283
283
Original file line number Diff line number Diff line change @@ -7,27 +7,27 @@ struct YYY<T> {
7
7
@inline ( never)
8
8
init ( t : T ) { m_t = t}
9
9
@inline ( never) mutating
10
- func AAA9( t t : T ) -> Int { return AAA8 ( t: t) }
10
+ func AAA9( t t : T ) -> Int { return AAA8 ( t: t) }
11
11
@inline ( never) mutating
12
- func AAA8( t t : T ) -> Int { return AAA7 ( t: t) }
12
+ func AAA8( t t : T ) -> Int { return AAA7 ( t: t) }
13
13
@inline ( never) mutating
14
- func AAA7( t t : T ) -> Int { return AAA6 ( t: t) }
14
+ func AAA7( t t : T ) -> Int { return AAA6 ( t: t) }
15
15
@inline ( never) mutating
16
- func AAA6( t t : T ) -> Int { return AAA5 ( t: t) }
16
+ func AAA6( t t : T ) -> Int { return AAA5 ( t: t) }
17
17
@inline ( never) mutating
18
- func AAA5( t t : T ) -> Int { return AAA4 ( t: t) }
18
+ func AAA5( t t : T ) -> Int { return AAA4 ( t: t) }
19
19
@inline ( never) mutating
20
- func AAA4( t t : T ) -> Int { return AAA3 ( t: t) }
20
+ func AAA4( t t : T ) -> Int { return AAA3 ( t: t) }
21
21
@inline ( never) mutating
22
- func AAA3( t t : T ) -> Int { return AAA2 ( t: t) }
22
+ func AAA3( t t : T ) -> Int { return AAA2 ( t: t) }
23
23
@inline ( never) mutating
24
- func AAA2( t t : T ) -> Int { return AAA1 ( t: t) }
24
+ func AAA2( t t : T ) -> Int { return AAA1 ( t: t) }
25
25
@inline ( never) mutating
26
- func AAA1( t t : T ) -> Int { return AAA0 ( t: t) }
26
+ func AAA1( t t : T ) -> Int { return AAA0 ( t: t) }
27
27
@inline ( never) mutating
28
- func AAA0( t t : T ) -> Int { return foo ( t: t) }
28
+ func AAA0( t t : T ) -> Int { return foo ( t: t) }
29
29
@inline ( never) mutating
30
- func foo( t t : T ) -> Int { m_t = t; return 4 }
30
+ func foo( t t : T ) -> Int { m_t = t; return 4 }
31
31
var m_t : T
32
32
}
33
33
You can’t perform that action at this time.
0 commit comments