Sign in
android
/
platform
/
external
/
pytorch
/
1ad53b51d0
/
.
/
torch
/
csrc
/
utils
/
pycfunction_helpers.h
blob: 32cfeb5999d5dceef4af241e7a11e645cd7e38cb [
file
] [
log
] [
blame
]
#pragma
once
#include
<Python.h>
inline
PyCFunction
castPyCFunctionWithKeywords
(
PyCFunctionWithKeywords
func
)
{
// NOLINTNEXTLINE(modernize-redundant-void-arg)
return
(
PyCFunction
)(
void
(*)(
void
))
func
;
}