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

Change implementation method signature to declare type is int #10

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion IGHTMLQuery/Classes/IGHTMLDocument.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ - (id)initWithHTMLFragmentData:(NSData *)data encoding:(NSString*)encoding error
return [self initWithHTMLData:data encoding:encoding options:(HTML_PARSE_RECOVER | HTML_PARSE_NOWARNING | HTML_PARSE_NOERROR | HTML_PARSE_NOIMPLIED | HTML_PARSE_NONET) error:outError];
}

- (id)initWithHTMLData:(NSData *)data encoding:(NSString*)encoding options:(htmlParserOption)options error:(NSError**)outError{
- (id)initWithHTMLData:(NSData *)data encoding:(NSString*)encoding options:(int)options error:(NSError**)outError{
if ((self = [super init])) {
NSParameterAssert(data);

Expand Down