Skip to content

Commit

Permalink
Shut off the error about CIFilters for now. Issue #93 tracks the fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
uliwitness committed Oct 28, 2018
1 parent 71a42cb commit 2a540ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Stacksmith/Custom Effects/WILDTransitionFilter.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,11 @@ -(id) initWithName: (NSString*)kernelName
[self autorelease];
return nil;
}
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
NSArray *kernels = [CIKernel kernelsWithString: code];

#pragma GCC diagnostic pop

foundKernel = [kernels objectAtIndex: 0];
[sFilterKernels setObject: foundKernel forKey: kernelName];
}
Expand Down

0 comments on commit 2a540ff

Please sign in to comment.