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 ed680f9 commit b9a5a06Copy full SHA for b9a5a06
cpp/src/plasma/extension.h
@@ -20,9 +20,13 @@
20
21
#undef _XOPEN_SOURCE
22
#undef _POSIX_C_SOURCE
23
-#include "bytesobject.h" // NOLINT
24
#include <Python.h>
25
+#include "bytesobject.h" // NOLINT
26
+
27
+#include "plasma/client.h"
28
+#include "plasma/common.h"
29
30
static int PyObjectToPlasmaClient(PyObject* object, PlasmaClient** client) {
31
if (PyCapsule_IsValid(object, "plasma")) {
32
*client = reinterpret_cast<PlasmaClient*>(PyCapsule_GetPointer(object, "plasma"));
cpp/src/plasma/plasma.h
@@ -32,6 +32,7 @@
#include "arrow/status.h"
33
#include "arrow/util/logging.h"
34
#include "format/common_generated.h"
35
36
37
#include <inttypes.h>
38
0 commit comments