From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Mon, 17 Mar 2025 16:22:25 +0000 (+0100) Subject: GH-131291: Suppress clang-specific warning in python_uwp.cpp (GH-131292) X-Git-Tag: v3.14.0a7~346 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef4fe7078513c658ef8239d2e64ddc33e4c3d4c1;p=thirdparty%2FPython%2Fcpython.git GH-131291: Suppress clang-specific warning in python_uwp.cpp (GH-131292) --- diff --git a/PC/python_uwp.cpp b/PC/python_uwp.cpp index 2beea60e5af1..b9c408a580c9 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