Pybind11语法糖使用的模版类型无法正确翻译
示例:
template <typename T>
class TestTemplate {
using ArrayT = std::vector<T>;
public:
TestTemplate() = default;
ArrayT array_t(ArrayT t) { return t; };
};
其中array_t
接口翻译出错, 无法正确将ArrayT
类型翻译为std::vector<T>
Edited by mingfa.yang