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
Function void vector_type(const std::string &type, Module& m) now accepts second parameter and returns nothing. However you have following code:
void vector_type(const std::string &type, Module& m)
// Add the string_methods module. auto stringmethods = chaiscript::extras::string_methods::bootstrap(); chai.add(chaiscript::bootstrap::standard_library::vector_type<std::vector<std::string>>("StringVector")); chai.add(stringmethods);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Function
void vector_type(const std::string &type, Module& m)
now accepts second parameter and returns nothing.However you have following code:
The text was updated successfully, but these errors were encountered: