Autodesk / Autodesk/AutomaticComponentToolkit
Out optionalclass is not generating valid code in C++ implementation.
Open
- Dominant language
- Go
- Stars
- 53
- Forks
- 26
- PR merge metrics
- No merged PRs in 30d
Description
If there is an out optionalclass value, the code generator creates a base result variable:
IBase * pBaseHandlerInstance(nullptr);
This leads to a compile error of the implementation. The class should be the correct output class, like
ISignalHandler * pBaseHandlerInstance(nullptr);
Contributor guide
Assessment
This issue has not been assessed yet.