From a22881c9db07daa0e6a02f6be016a74742bc0654 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Wed, 5 Mar 2025 09:11:09 +1100 Subject: [PATCH] [ORC-RT] Fix type name in comment. NFC. --- compiler-rt/include/orc_rt/c_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/include/orc_rt/c_api.h b/compiler-rt/include/orc_rt/c_api.h index 5585cd608684..f428e94b1a7e 100644 --- a/compiler-rt/include/orc_rt/c_api.h +++ b/compiler-rt/include/orc_rt/c_api.h @@ -62,7 +62,7 @@ typedef union { * the 'small' state and the content is held in the first Size bytes of * Data.Value. * - * If Size > sizeof(OrtRTCWrapperFunctionResultData) then the value is in the + * If Size > sizeof(orc_rt_CWrapperFunctionResultData) then the value is in the * 'large' state and the content is held in the first Size bytes of the * memory pointed to by Data.ValuePtr. This memory must have been allocated by * malloc, and will be freed with free when this value is destroyed.