| 1178 | } |
| 1179 | |
| 1180 | TVM_FFI_INLINE static void DecRefObjectHandle(TVMFFIObjectHandle handle) { |
| 1181 | if (handle) reinterpret_cast<Object*>(handle)->DecRef(); |
| 1182 | } |
| 1183 | |
| 1184 | TVM_FFI_INLINE static void IncRefObjectHandle(TVMFFIObjectHandle handle) { |
| 1185 | reinterpret_cast<Object*>(handle)->IncRef(); |