Kaydet (Commit) ba452959 authored tarafından Victor Stinner's avatar Victor Stinner

ssue #25207: fix ICC compiler warning in msvcrtmodule.c

üst 4552ced9
...@@ -541,7 +541,6 @@ PyInit_msvcrt(void) ...@@ -541,7 +541,6 @@ PyInit_msvcrt(void)
#endif #endif
/* constants for the crt versions */ /* constants for the crt versions */
(void)st;
#ifdef _VC_ASSEMBLY_PUBLICKEYTOKEN #ifdef _VC_ASSEMBLY_PUBLICKEYTOKEN
st = PyModule_AddStringConstant(m, "VC_ASSEMBLY_PUBLICKEYTOKEN", st = PyModule_AddStringConstant(m, "VC_ASSEMBLY_PUBLICKEYTOKEN",
_VC_ASSEMBLY_PUBLICKEYTOKEN); _VC_ASSEMBLY_PUBLICKEYTOKEN);
...@@ -567,6 +566,8 @@ PyInit_msvcrt(void) ...@@ -567,6 +566,8 @@ PyInit_msvcrt(void)
st = PyModule_AddObject(m, "CRT_ASSEMBLY_VERSION", version); st = PyModule_AddObject(m, "CRT_ASSEMBLY_VERSION", version);
if (st < 0) return NULL; if (st < 0) return NULL;
#endif #endif
/* make compiler warning quiet if st is unused */
(void)st;
return m; return m;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment