We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Line 54 seems to be causing instruments to detect a memory leak, context:
- (id)init { self = [super init]; if (self) { maxDepth = 32u; stateStack = [[NSMutableArray alloc] initWithCapacity:maxDepth]; state = [SBJsonStreamParserStateStart sharedInstance]; // THIS LINE tokeniser = [[SBJsonTokeniser alloc] init]; } return self; }
The text was updated successfully, but these errors were encountered:
I don't see this. It's a singleton - there shouldn't be any leaks there.
Sorry, something went wrong.
Now using ARC, so hopefully this should be moot.
No branches or pull requests
Line 54 seems to be causing instruments to detect a memory leak, context:
The text was updated successfully, but these errors were encountered: