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 {
164164
165165SWIFT_NAME (" getter:BridgedArrayRef.data(self:)" )
166166BRIDGED_INLINE
167- const void *_Nullable BridgedArrayRef_data(const BridgedArrayRef arr);
167+ const void *_Nullable BridgedArrayRef_data(BridgedArrayRef arr);
168168
169169SWIFT_NAME (" getter:BridgedArrayRef.count(self:)" )
170- BRIDGED_INLINE SwiftInt BridgedArrayRef_count(const BridgedArrayRef arr);
170+ BRIDGED_INLINE SwiftInt BridgedArrayRef_count(BridgedArrayRef arr);
171171
172172SWIFT_NAME (" getter:BridgedArrayRef.isEmpty(self:)" )
173- BRIDGED_INLINE bool BridgedArrayRef_isEmpty(const BridgedArrayRef arr);
173+ BRIDGED_INLINE bool BridgedArrayRef_isEmpty(BridgedArrayRef arr);
174174
175175// ===----------------------------------------------------------------------===//
176176// MARK: Data
Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ SWIFT_BEGIN_NULLABILITY_ANNOTATIONS
2323// MARK: BridgedArrayRef
2424//===----------------------------------------------------------------------===//
2525
26- const void * _Nullable BridgedArrayRef_data (const BridgedArrayRef arr ) {
26+ const void * _Nullable BridgedArrayRef_data (BridgedArrayRef arr ) {
2727 return arr .Data ;
2828}
2929
30- SwiftInt BridgedArrayRef_count (const BridgedArrayRef arr ) {
30+ SwiftInt BridgedArrayRef_count (BridgedArrayRef arr ) {
3131 return static_cast < SwiftInt > (arr .Length );
3232}
3333
34- bool BridgedArrayRef_isEmpty (const BridgedArrayRef arr ) {
34+ bool BridgedArrayRef_isEmpty (BridgedArrayRef arr ) {
3535 return arr .Length == 0 ;
3636}
3737
You can’t perform that action at this time.
0 commit comments