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

Crashes on OS X 10.8 #104

Open
linhj07 opened this issue Mar 17, 2016 · 1 comment
Open

Crashes on OS X 10.8 #104

linhj07 opened this issue Mar 17, 2016 · 1 comment

Comments

@linhj07
Copy link

linhj07 commented Mar 17, 2016

There is a crash in GRMustacheImplicitIteratorExpression.m when running on OS X 10.8. It seems that the issue is related to the initialize function in that simply modifying the function:

  • (void)initialize
    {
    instance = [[self alloc] init];
    }

into:

  • (void)load
    {
    instance = [[self alloc] init];
    }

would make it wok on OS X 10.8

@groue
Copy link
Owner

groue commented Mar 17, 2016

Hello @linhj07

I'm assuming you have a threading issue, but I'm not sure. Do you have a crash log to share, or any other information?

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

No branches or pull requests

2 participants