Skip to content

Commit 71c1e53

Browse files
alexmalyshevfacebook-github-bot
authored andcommitted
Fix OSS build, no fmt support for _PyJIT_Result
Summary: Needs an integer cast to make fmt happy. Reviewed By: brittanyrey Differential Revision: D83490629 fbshipit-source-id: a961d346ff1395130b0717c40b2981a90d1bcd94
1 parent cf7ec92 commit 71c1e53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cinderx/Jit/pyjit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ PyObject* forcedJitVectorcall(
247247

248248
JIT_ABORT(
249249
"Unrecognized JIT result code {} for function {}",
250-
result,
250+
static_cast<int>(result),
251251
funcFullname(func));
252252
}
253253

0 commit comments

Comments
 (0)