We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd9fd49 commit facdc12Copy full SHA for facdc12
1 file changed
Applications/Python/PikaPython/pikascript-lib/MatrixOS/PikaObjUtils.h
@@ -6,6 +6,7 @@ template <typename T, typename... Args>
6
void createCppObjPtrInPikaObj(PikaObj* pika_obj, Args&&... args)
7
{
8
T obj = T(std::forward<Args>(args)...);
9
+ obj_setStruct(pika_obj, (char*)"_self", obj);
10
}
11
12
template <typename T>
0 commit comments