-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
BLD: Fix armv7 build #59906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BLD: Fix armv7 build #59906
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,10 @@ Numeric decoder derived from TCL library | |
|
||
#include "pandas/vendored/ujson/lib/ultrajson.h" | ||
#define PY_SSIZE_T_CLEAN | ||
// clang-format off | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you can remove these clang-format comments now too (I assume they were flagging the multiple includes of the header) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unfortunately not. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah OK...that makes sense. Thanks. I see CI is broken now but I believe that's unrelated |
||
#include <Python.h> | ||
#include "pandas/vendored/ujson/lib/ultrajson.h" | ||
// clang-format on | ||
|
||
static int Object_objectAddKey(void *Py_UNUSED(prv), JSOBJ obj, JSOBJ name, | ||
JSOBJ value) { | ||
|
Uh oh!
There was an error while loading. Please reload this page.