From 06bffe18675e3a69c6b94c12473df6a4454be93e Mon Sep 17 00:00:00 2001 From: jatkinson1000 Date: Fri, 8 Nov 2024 17:55:50 +0000 Subject: [PATCH] Explicitly include stdint header in ctorch.h for int64_t following clang-tidy. --- src/ctorch.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ctorch.h b/src/ctorch.h index 733d26dc..9b45102d 100644 --- a/src/ctorch.h +++ b/src/ctorch.h @@ -7,6 +7,8 @@ #define EXPORT_C #endif +#include + // Opaque pointer type alias for torch::jit::script::Module class typedef void *torch_jit_script_module_t;