Skip to content

Commit cdb4a05

Browse files
committed
Fix style
1 parent 645776a commit cdb4a05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Include/internal/pycore_optimizer.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,9 @@ PyJitRef_IsUnique(JitOptRef ref)
261261
static inline JitOptRef
262262
PyJitRef_StripBorrowInfo(JitOptRef ref)
263263
{
264-
if (PyJitRef_IsUnique(ref)) return ref;
264+
if (PyJitRef_IsUnique(ref)) {
265+
return ref;
266+
}
265267
return (JitOptRef){ .bits = REF_CLEAR_TAG(ref.bits) };
266268
}
267269

0 commit comments

Comments
 (0)