Skip to content

Commit ec750a9

Browse files
committed
destroy logic
1 parent 55cb002 commit ec750a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyWrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ int PyWrapper::wrapperDestroy(std::string sid, char * handle) {
528528
py::object r = _wrapperDestroy(handle);
529529
// 此段根据python的返回 ,回写 respData
530530
spdlog::info("Destroy .. thread_id: {}, sid: {}", gettid(), sid);
531-
ret = r.cast<int>();
531+
int ret = r.cast<int>();
532532
return ret;
533533
}
534534

0 commit comments

Comments
 (0)