Skip to content

Commit 53e88b6

Browse files
committed
fix missing return value (fixes #45)
1 parent 8555cf8 commit 53e88b6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/nanobind/tensor.h

+1
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ template <typename... Args> class tensor {
268268
detail::tensor_dec_ref(m_handle);
269269
m_handle = t.m_handle;
270270
m_tensor = t.m_tensor;
271+
return *this;
271272
}
272273

273274
dlpack::dtype dtype() const { return m_tensor.dtype; }

0 commit comments

Comments
 (0)