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
chugin.cpp
QUERY->begin_class(QUERY, "Foo", "Object"); QUERY->add_ctor(QUERY, foo_ctor); QUERY->add_mvar(QUERY, "int", "val", false); QUERY->end_class(QUERY); QUERY->begin_class(QUERY, "Bar", "Object"); QUERY->add_ctor(QUERY, bar_ctor); QUERY->add_mvar(QUERY, "Foo", "foo", false); QUERY->end_class(QUERY);
test.ck
Bar b; // bar_ctor is called, but never foo_ctor <<< b.foo.val >>>; // throws nullptr error. b.foo == NULL, foo was never instantiated
The text was updated successfully, but these errors were encountered:
seems related to #447
Sorry, something went wrong.
No branches or pull requests
chugin.cpp
test.ck
The text was updated successfully, but these errors were encountered: