From 8a8954f2d55fef0105c4fe711093ff485318429d Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 20 Jan 2025 16:31:06 -0800 Subject: [PATCH] Clarify function pointer variadics also support `-unwind` --- src/types/function-pointer.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/function-pointer.md b/src/types/function-pointer.md index 88ca5a31a..4a26151a6 100644 --- a/src/types/function-pointer.md +++ b/src/types/function-pointer.md @@ -47,6 +47,8 @@ these calling conventions: * `win64` * `efiapi` +This also includes the corresponding [`-unwind` variants][items.fn.extern.unwind]. + An example where `Binop` is defined as a function pointer type: ```rust