From 4052e5f5ea50d41c1232dae2740a7f8707ba36d7 Mon Sep 17 00:00:00 2001 From: Kenny Kerr <kenny@kennykerr.ca> Date: Mon, 6 Jan 2025 11:29:30 -0600 Subject: [PATCH] cppwinrt track_caller --- crates/libs/cppwinrt/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/libs/cppwinrt/src/lib.rs b/crates/libs/cppwinrt/src/lib.rs index de0d743239..3c02a7c65f 100644 --- a/crates/libs/cppwinrt/src/lib.rs +++ b/crates/libs/cppwinrt/src/lib.rs @@ -6,6 +6,7 @@ const VERSION: &str = "2.0.240405.15"; /// Calls the C++/WinRT compiler with the given arguments. /// /// Use `cppwinrt["-help"]` for available options. +#[track_caller] pub fn cppwinrt<I, S>(args: I) -> String where I: IntoIterator<Item = S>,