File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
graalpython/com.oracle.graal.python.cext Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ if (MSVC)
82
82
/wd4774 # 'sprintf': format string expected in argument 2 is not a string literal
83
83
/wd4191 # unsafe conversion from 'PyObject *(__cdecl *)(MatchObject *,PyObject *const *,Py_ssize_t)' to 'void (__cdecl *)(void)'
84
84
/wd4574 # sqlite, expat: 'SQLITE_ATOMIC_INTRINSICS' is defined to be '0': did you mean to use '#if SQLITE_ATOMIC_INTRINSICS'?
85
+ /wd4701 # potentially uninitialized local variable used
85
86
86
87
# Some that I'm not so happy about
87
88
/wd4232 # sre: nonstandard extension used: 'ml_meth': address of dllimport 'Py_GenericAlias' is not static, identity not guaranteed
@@ -221,9 +222,6 @@ endfunction()
221
222
add_library (${TARGET_LIBPYTHON} SHARED )
222
223
native_module ("_cpython_sre" TRUE "${SRC_DIR} /modules/_cpython_sre/sre.c" )
223
224
simple_native_module ("_cpython_unicodedata" )
224
- if (WIN32 )
225
- target_compile_options ("_cpython_unicodedata" PRIVATE /wd4701 )
226
- endif ()
227
225
if (NOT WIN32 )
228
226
simple_native_module ("termios" )
229
227
endif ()
You can’t perform that action at this time.
0 commit comments