Skip to content

Commit de81c14

Browse files
committed
Fix OBPathStorage header issue on iOS CI
1 parent 2eab2a3 commit de81c14

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Package.resolved

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sources/OpenBox/include/OBPathStorage.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,40 +22,40 @@ void OBPathStorageInit(OBPathStorageRef dst, uint32_t capacity, OBPathStorageRef
2222

2323
OB_EXPORT
2424
OB_REFINED_FOR_SWIFT
25-
void OBPathStorageDestroy(OBPathStorageRef storage) OB_SWIFT_NAME(OBPathStorage.destroy(self:));
25+
void OBPathStorageDestroy(OBPathStorageRef storage) OB_SWIFT_NAME(OBPathStorageRef.destroy(self:));
2626

2727
OB_EXPORT
2828
OB_REFINED_FOR_SWIFT
29-
void OBPathStorageClear(OBPathStorageRef storage) OB_SWIFT_NAME(OBPathStorage.clear(self:));
29+
void OBPathStorageClear(OBPathStorageRef storage) OB_SWIFT_NAME(OBPathStorageRef.clear(self:));
3030

3131
//OB_EXPORT
3232
//OB_REFINED_FOR_SWIFT
3333
//void OBPathStorageAppendPath(OBPathStorage, OBPath);
3434

3535
OB_EXPORT
3636
OB_REFINED_FOR_SWIFT
37-
bool OBPathStorageIsEmpty(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorage.isEmpty(self:));
37+
bool OBPathStorageIsEmpty(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorageRef.isEmpty(self:));
3838

3939
OB_EXPORT
4040
OB_REFINED_FOR_SWIFT
41-
bool OBPathStorageEqualToStorage(OBPathStorageRef lhs, OBPathStorageRef rhs) OB_SWIFT_NAME(OBPathStorage.isEqualTo(self:_:));
41+
bool OBPathStorageEqualToStorage(OBPathStorageRef lhs, OBPathStorageRef rhs) OB_SWIFT_NAME(OBPathStorageRef.isEqualTo(self:_:));
4242

4343
OB_EXPORT
4444
OB_REFINED_FOR_SWIFT
45-
bool OBPathStorageIsSingleElement(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorage.isSingleElement(self:));
45+
bool OBPathStorageIsSingleElement(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorageRef.isSingleElement(self:));
4646

4747
OB_EXPORT
4848
OB_REFINED_FOR_SWIFT
49-
uint32_t OBPathStorageGetBezierOrder(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorage.bezierOrder(self:));
49+
uint32_t OBPathStorageGetBezierOrder(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorageRef.bezierOrder(self:));
5050

5151
#if OB_TARGET_OS_DARWIN
5252
OB_EXPORT
5353
OB_REFINED_FOR_SWIFT
54-
CGRect OBPathStorageGetBoundingRect(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorage.boundingRect(self:));
54+
CGRect OBPathStorageGetBoundingRect(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorageRef.boundingRect(self:));
5555

5656
OB_EXPORT
5757
OB_REFINED_FOR_SWIFT
58-
CGPathRef RBPathStorageGetCGPath(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorage.cgPath(self:));
58+
CGPathRef RBPathStorageGetCGPath(OBPathStorageRef storage) OB_SWIFT_NAME(getter:OBPathStorageRef.cgPath(self:));
5959
#endif
6060

6161
OB_EXTERN_C_END

0 commit comments

Comments
 (0)