Skip to content

Commit b9a5a06

Browse files
committed
fix includes
1 parent ed680f9 commit b9a5a06

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

cpp/src/plasma/extension.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@
2020

2121
#undef _XOPEN_SOURCE
2222
#undef _POSIX_C_SOURCE
23-
#include "bytesobject.h" // NOLINT
2423
#include <Python.h>
2524

25+
#include "bytesobject.h" // NOLINT
26+
27+
#include "plasma/client.h"
28+
#include "plasma/common.h"
29+
2630
static int PyObjectToPlasmaClient(PyObject* object, PlasmaClient** client) {
2731
if (PyCapsule_IsValid(object, "plasma")) {
2832
*client = reinterpret_cast<PlasmaClient*>(PyCapsule_GetPointer(object, "plasma"));

cpp/src/plasma/plasma.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include "arrow/status.h"
3333
#include "arrow/util/logging.h"
3434
#include "format/common_generated.h"
35+
#include "plasma/common.h"
3536

3637
#include <inttypes.h>
3738

0 commit comments

Comments
 (0)