We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab1ad9c commit 5d82489Copy full SHA for 5d82489
Include/internal/pycore_optimizer.h
@@ -259,9 +259,9 @@ PyJitRef_Borrow(JitOptRef ref)
259
}
260
261
#ifndef Py_GIL_DISABLED
262
-static const JitOptRef PyJitRef_NULL = (JitOptRef){.bits = PyStackRef_NULL_BITS};
+static const JitOptRef PyJitRef_NULL = {.bits = PyStackRef_NULL_BITS};
263
#else
264
-static const JitOptRef PyJitRef_NULL = (JitOptRef){.bits = Py_TAG_DEFERRED};
+static const JitOptRef PyJitRef_NULL = {.bits = Py_TAG_DEFERRED};
265
#endif
266
267
static inline bool
0 commit comments