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 3d9fcc2 commit a2cf47bCopy full SHA for a2cf47b
cpp/src/arrow/ipc/json.cc
@@ -19,6 +19,8 @@
19
20
#include <cstdint>
21
#include <memory>
22
+#include <string>
23
+#include <vector>
24
25
#include "arrow/array.h"
26
#include "arrow/ipc/json-internal.h"
@@ -38,7 +40,7 @@ namespace ipc {
38
40
39
41
class JsonWriter::JsonWriterImpl {
42
public:
- JsonWriterImpl(const std::shared_ptr<Schema>& schema) : schema_(schema) {
43
+ explicit JsonWriterImpl(const std::shared_ptr<Schema>& schema) : schema_(schema) {
44
writer_.reset(new RjWriter(string_buffer_));
45
}
46
cpp/src/arrow/ipc/json.h
@@ -21,6 +21,7 @@
#define ARROW_IPC_JSON_H
#include <vector>
27
#include "arrow/type_fwd.h"
0 commit comments