You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The generated code does not consistently fully qualify all standard library types - in particular there are non-fully qualified Vec, Result and partially qualifies std::collections::BTreeMap.
This is liable to result in name collisions with the generated code, or other types which may be in scope.
All types should be fully qualified, e.g. ::std::vec::Vec
The text was updated successfully, but these errors were encountered:
The generated code does not consistently fully qualify all standard library types - in particular there are non-fully qualified
Vec
,Result
and partially qualifiesstd::collections::BTreeMap
.This is liable to result in name collisions with the generated code, or other types which may be in scope.
All types should be fully qualified, e.g.
::std::vec::Vec
The text was updated successfully, but these errors were encountered: