File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -164,13 +164,13 @@ class BridgedArrayRef {
164
164
165
165
SWIFT_NAME (" getter:BridgedArrayRef.data(self:)" )
166
166
BRIDGED_INLINE
167
- const void *_Nullable BridgedArrayRef_data(const BridgedArrayRef arr);
167
+ const void *_Nullable BridgedArrayRef_data(BridgedArrayRef arr);
168
168
169
169
SWIFT_NAME (" getter:BridgedArrayRef.count(self:)" )
170
- BRIDGED_INLINE SwiftInt BridgedArrayRef_count(const BridgedArrayRef arr);
170
+ BRIDGED_INLINE SwiftInt BridgedArrayRef_count(BridgedArrayRef arr);
171
171
172
172
SWIFT_NAME (" getter:BridgedArrayRef.isEmpty(self:)" )
173
- BRIDGED_INLINE bool BridgedArrayRef_isEmpty(const BridgedArrayRef arr);
173
+ BRIDGED_INLINE bool BridgedArrayRef_isEmpty(BridgedArrayRef arr);
174
174
175
175
// ===----------------------------------------------------------------------===//
176
176
// MARK: Data
Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ SWIFT_BEGIN_NULLABILITY_ANNOTATIONS
23
23
// MARK: BridgedArrayRef
24
24
//===----------------------------------------------------------------------===//
25
25
26
- const void * _Nullable BridgedArrayRef_data (const BridgedArrayRef arr ) {
26
+ const void * _Nullable BridgedArrayRef_data (BridgedArrayRef arr ) {
27
27
return arr .Data ;
28
28
}
29
29
30
- SwiftInt BridgedArrayRef_count (const BridgedArrayRef arr ) {
30
+ SwiftInt BridgedArrayRef_count (BridgedArrayRef arr ) {
31
31
return static_cast < SwiftInt > (arr .Length );
32
32
}
33
33
34
- bool BridgedArrayRef_isEmpty (const BridgedArrayRef arr ) {
34
+ bool BridgedArrayRef_isEmpty (BridgedArrayRef arr ) {
35
35
return arr .Length == 0 ;
36
36
}
37
37
You can’t perform that action at this time.
0 commit comments