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
Take the example:
template<size_t I> class C {};
Will currently just generate:
add_type(Type::create<C<3>>("C<3>", get_id<C<3>>(), { }, { }, { }, { }, { TemplateArgument{ Neat::Any{ 3 } }, } ));
And because the default integer type in C++ is int. The any will store a value of int instead of a value of size_t as is declared by template.
int
size_t
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Take the example:
Will currently just generate:
And because the default integer type in C++ is
int
. The any will store a value ofint
instead of a value ofsize_t
as is declared by template.The text was updated successfully, but these errors were encountered: