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
Part of my code generation has switched from emitting String to emitting ::std::string::String , and now in butane_cli::make_migration I am seeing
String
::std::string::String
butane_cli::make_migration
Cannot resolve type CustomType(::std::string::String)
The text was updated successfully, but these errors were encountered:
Likely other types in std have also changed, but I suspect I am only using CustomType with String.
std
CustomType
Sorry, something went wrong.
Recognize more paths for String and Vec
82dc20e
Recognize std::string::String, ::std::string::String, std::vec::Vec, and ::std::vec::Vec. Fixes #298
Successfully merging a pull request may close this issue.
Part of my code generation has switched from emitting
String
to emitting::std::string::String
, and now inbutane_cli::make_migration
I am seeingThe text was updated successfully, but these errors were encountered: