Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: always replace >< with , #50

Merged
merged 1 commit into from
Apr 29, 2024
Merged

Conversation

t0rr3sp3dr0
Copy link
Contributor

We should always replace >< with , , not only when we have untyped protocol qualifiers.

Before:

@import Foundation;

@protocol NSFilePresenterXPCInterface><NSXPCProxyCreating;

@interface NSFilePresenterManagedProxy : NSObject <NSXPCProxyCreating> {
    /* instance variables */
    NSObject<NSFilePresenterXPCInterface><NSXPCProxyCreating> *_xpcProxy;
    NSObject<NSFilePresenterXPCInterface><NSXPCProxyCreating> *_nonboostingXPCProxy;
}

After:

@import Foundation;

@interface NSFilePresenterManagedProxy : NSObject <NSXPCProxyCreating> {
    /* instance variables */
    NSObject<NSFilePresenterXPCInterface, NSXPCProxyCreating> *_xpcProxy;
    NSObject<NSFilePresenterXPCInterface, NSXPCProxyCreating> *_nonboostingXPCProxy;
}

@blacktop blacktop merged commit ea4593c into blacktop:master Apr 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants