diff options
| author | Chris Eibl <138194463+chris-eibl@users.noreply.github.com> | 2025-03-17 16:22:25 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-17 16:22:25 (GMT) |
| commit | ef4fe7078513c658ef8239d2e64ddc33e4c3d4c1 (patch) | |
| tree | d5d42c120942344201952c2cfa804cf836627feb /PC/python_uwp.cpp | |
| parent | 30d52058493e07fd1d3efea960482f4001bd2f86 (diff) | |
| download | cpython-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.cpp | 4 |
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> |
