You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python.cext/CMakeLists.txt
+17-9Lines changed: 17 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -80,14 +80,13 @@ if (MSVC)
80
80
/wd4710# 'fprintf': function not inlined
81
81
/wd4706# assignment within conditional expression
82
82
/wd4774# 'sprintf': format string expected in argument 2 is not a string literal
83
+
/wd4191# unsafe conversion from 'PyObject *(__cdecl *)(MatchObject *,PyObject *const *,Py_ssize_t)' to 'void (__cdecl *)(void)'
84
+
/wd4574# sqlite, expat: 'SQLITE_ATOMIC_INTRINSICS' is defined to be '0': did you mean to use '#if SQLITE_ATOMIC_INTRINSICS'?
83
85
84
86
# Some that I'm not so happy about
85
87
/wd4232# sre: nonstandard extension used: 'ml_meth': address of dllimport 'Py_GenericAlias' is not static, identity not guaranteed
86
-
/wd4191# sre and sqlite: 'type cast': like unsafe conversion from 'PyObject *(__cdecl *)(MatchObject *,PyObject *const *,Py_ssize_t)' to 'void (__cdecl *)(void)'
87
88
/wd4918# sre: invalid character in pragma optimization list
88
-
/wd4701# cpython_unicodedata: potentially uninitialized local variable 'rc' used
89
89
/wd4703# unicodeobject.c:potentially uninitialized local pointer variable used
90
-
/wd4574# sqlite: 'SQLITE_ATOMIC_INTRINSICS' is defined to be '0': did you mean to use '#if SQLITE_ATOMIC_INTRINSICS'?
91
90
/wd4310# xmlparse: cast truncates constant value
92
91
/wd4777# format string '%zd' requires an argument of type 'unsigned __int64'
0 commit comments