From 093be364913c776ca51eb4c164a483665f3dbdd0 Mon Sep 17 00:00:00 2001 From: Rodrigo Rivas Costa Date: Wed, 11 Oct 2023 17:27:04 +0200 Subject: [PATCH] Add thiscall_abi to stable version Rust 1.73. 1.73 Changelog: - https://github.com/rust-lang/rust/releases/tag/1.73.0 Stabilization issue: - https://github.com/rust-lang/rust/pull/114562/ --- bindgen/features.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindgen/features.rs b/bindgen/features.rs index 67c6fb4565..e5e2068053 100644 --- a/bindgen/features.rs +++ b/bindgen/features.rs @@ -95,9 +95,9 @@ macro_rules! define_rust_targets { // not stable. define_rust_targets! { Nightly => { - thiscall_abi: #42202, vectorcall_abi, }, + Stable_1_73(73) => { thiscall_abi: #42202 }, Stable_1_71(71) => { c_unwind_abi: #106075 }, Stable_1_68(68) => { abi_efiapi: #105795 }, Stable_1_64(64) => { core_ffi_c: #94503 },