From ef4fe7078513c658ef8239d2e64ddc33e4c3d4c1 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Mon, 17 Mar 2025 17:22:25 +0100 Subject: [PATCH] GH-131291: Suppress clang-specific warning in python_uwp.cpp (GH-131292) --- PC/python_uwp.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PC/python_uwp.cpp b/PC/python_uwp.cpp index 2beea60e5a..b9c408a580 100644 --- a/PC/python_uwp.cpp +++ b/PC/python_uwp.cpp @@ -10,6 +10,10 @@ #include +#if defined(__clang__) +#define _SILENCE_CLANG_COROUTINE_MESSAGE +#endif + #include #include #include