junrushao commented on code in PR #32:
URL: https://github.com/apache/tvm-ffi/pull/32#discussion_r2364633857


##########
src/ffi/extra/testing.cc:
##########
@@ -87,6 +87,41 @@ class TestObjectDerived : public TestObjectBase {
   TVM_FFI_DECLARE_OBJECT_INFO_FINAL("testing.TestObjectDerived", 
TestObjectDerived, TestObjectBase);
 };
 
+class TestCxxClassBase : public Object {
+ public:
+  int64_t v_i64;
+  int32_t v_i32;
+
+  TestCxxClassBase(int64_t v_i64, int32_t v_i32) : v_i64(v_i64), v_i32(v_i32) 
{}

Review Comment:
   No it's fine in C++



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to