From 4ba5aefafc4305625d79553f7f77a100c030c58e Mon Sep 17 00:00:00 2001 From: chyyran Date: Wed, 18 Sep 2024 00:55:05 -0400 Subject: [PATCH] capi: don't export wrap_ok macro This was done by accident, so will be made exempt from Rust versioning guarantees. --- librashader-capi/src/ffi.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/librashader-capi/src/ffi.rs b/librashader-capi/src/ffi.rs index 96e04b7..df914d7 100644 --- a/librashader-capi/src/ffi.rs +++ b/librashader-capi/src/ffi.rs @@ -1,4 +1,3 @@ -#[macro_export] macro_rules! wrap_ok { ($e:expr) => { ::core::iter::empty().try_fold($e, |_, __x: ::core::convert::Infallible| match __x {})