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
如何构建二维vector,为什么create_vector( vector_t )以及create_vector( vector_t * )都会返回NULL?
是需要先type_register一下吗?
The text was updated successfully, but these errors were encountered:
1. create_vector( vector_t * )返回NULL you need to reguster vector_t * .
2.create_vector( vector_t )返回NULL you should use create_vector( vector_t <[your data type]>) .
Sorry, something went wrong.
As the original author of libcstl seems not to maintain this project any more, I created a repos that borrows type-registration mechanism in libcstl and impl in eastl. Feel free to star https://github.com/Kiddinglife/zmdcstl/settings/remove_itr_type_and_only_use_container_type
No branches or pull requests
如何构建二维vector,为什么create_vector( vector_t )以及create_vector( vector_t * )都会返回NULL?
是需要先type_register一下吗?
The text was updated successfully, but these errors were encountered: