summaryrefslogtreecommitdiffstats
path: root/PC/python_uwp.cpp
diff options
context:
space:
mode:
authorChris Eibl <138194463+chris-eibl@users.noreply.github.com>2025-03-17 16:22:25 (GMT)
committerGitHub <noreply@github.com>2025-03-17 16:22:25 (GMT)
commitef4fe7078513c658ef8239d2e64ddc33e4c3d4c1 (patch)
treed5d42c120942344201952c2cfa804cf836627feb /PC/python_uwp.cpp
parent30d52058493e07fd1d3efea960482f4001bd2f86 (diff)
downloadcpython-ef4fe7078513c658ef8239d2e64ddc33e4c3d4c1.zip
cpython-ef4fe7078513c658ef8239d2e64ddc33e4c3d4c1.tar.gz
cpython-ef4fe7078513c658ef8239d2e64ddc33e4c3d4c1.tar.bz2
GH-131291: Suppress clang-specific warning in python_uwp.cpp (GH-131292)
Diffstat (limited to 'PC/python_uwp.cpp')
-rw-r--r--PC/python_uwp.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/python_uwp.cpp b/PC/python_uwp.cpp
index 2beea60..b9c408a 100644
--- a/PC/python_uwp.cpp
+++ b/PC/python_uwp.cpp
@@ -10,6 +10,10 @@
#include <string>
+#if defined(__clang__)
+#define _SILENCE_CLANG_COROUTINE_MESSAGE
+#endif
+
#include <appmodel.h>
#include <winrt\Windows.ApplicationModel.h>
#include <winrt\Windows.Storage.h>