summaryrefslogtreecommitdiffstats
path: root/contrib/libs/apache/arrow_next/cpp/src
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2025-10-24 02:41:18 +0300
committerrobot-piglet <[email protected]>2025-10-24 02:52:57 +0300
commit283f0b9a889a0a37f813c18329b79c027e7763f9 (patch)
treed820f87748ff2044ed2ae28340af5367cbf8eb2b /contrib/libs/apache/arrow_next/cpp/src
parentd9f6300eb1066c7cc03bfc53becafb8f8405ebb9 (diff)
Intermediate changes
commit_hash:e6d88da8c50becad7284feeff6e562884760836e
Diffstat (limited to 'contrib/libs/apache/arrow_next/cpp/src')
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/api.h4
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/filesystem.cc6
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/arrow/ipc/metadata_internal.h2
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/arrow/util/tracing_internal.h4
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_extras.hpp3
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_random.hpp1
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/generated/ya.make4
-rw-r--r--contrib/libs/apache/arrow_next/cpp/src/parquet/xxhasher.cc3
8 files changed, 15 insertions, 12 deletions
diff --git a/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/api.h b/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/api.h
index 0d288ff0e49..bfc704ac24e 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/api.h
+++ b/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/api.h
@@ -22,10 +22,10 @@
#include "arrow/filesystem/filesystem.h" // IWYU pragma: export
#ifdef ARROW_AZURE
-# include "arrow/filesystem/azurefs.h" // IWYU pragma: export
+# error #include "arrow/filesystem/azurefs.h" // IWYU pragma: export
#endif
#ifdef ARROW_GCS
-# include "arrow/filesystem/gcsfs.h" // IWYU pragma: export
+# error #include "arrow/filesystem/gcsfs.h" // IWYU pragma: export
#endif
#error #include "arrow/filesystem/hdfs.h" // IWYU pragma: export
#include "arrow/filesystem/localfs.h" // IWYU pragma: export
diff --git a/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/filesystem.cc b/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/filesystem.cc
index 65bd550f4ca..be18ebb633e 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/filesystem.cc
+++ b/contrib/libs/apache/arrow_next/cpp/src/arrow/filesystem/filesystem.cc
@@ -26,13 +26,13 @@
#include "arrow/filesystem/filesystem.h"
#ifdef ARROW_AZURE
-#error include "arrow/filesystem/azurefs.h"
+# error #include "arrow/filesystem/azurefs.h"
#endif
#ifdef ARROW_GCS
-#error include "arrow/filesystem/gcsfs.h"
+# error #include "arrow/filesystem/gcsfs.h"
#endif
#ifdef ARROW_HDFS
-
+# error #include "arrow/filesystem/hdfs.h"
#endif
#ifdef ARROW_S3
# error #include "arrow/filesystem/s3fs.h"
diff --git a/contrib/libs/apache/arrow_next/cpp/src/arrow/ipc/metadata_internal.h b/contrib/libs/apache/arrow_next/cpp/src/arrow/ipc/metadata_internal.h
index d326e65b329..8a78aa487df 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/arrow/ipc/metadata_internal.h
+++ b/contrib/libs/apache/arrow_next/cpp/src/arrow/ipc/metadata_internal.h
@@ -45,7 +45,7 @@
namespace arrow20 {
-namespace flatbuf = ::org::apache::arrow20::flatbuf;
+namespace flatbuf = org::apache::arrow20::flatbuf;
namespace ipc {
diff --git a/contrib/libs/apache/arrow_next/cpp/src/arrow/util/tracing_internal.h b/contrib/libs/apache/arrow_next/cpp/src/arrow/util/tracing_internal.h
index b7606628414..8f65ba4cfc4 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/arrow/util/tracing_internal.h
+++ b/contrib/libs/apache/arrow_next/cpp/src/arrow/util/tracing_internal.h
@@ -28,8 +28,8 @@
# pragma warning(push)
# pragma warning(disable : 4522)
# endif
-#error include <opentelemetry/trace/provider.h>
-#error include <opentelemetry/trace/scope.h>
+# error #include <opentelemetry/trace/provider.h>
+# error #include <opentelemetry/trace/scope.h>
# ifdef _MSC_VER
# pragma warning(pop)
# endif
diff --git a/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_extras.hpp b/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_extras.hpp
index 7ce1dfcda5a..04ac965a2a1 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_extras.hpp
+++ b/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_extras.hpp
@@ -1,3 +1,4 @@
+#pragma clang system_header
/*
* PCG Random Number Generation for C++
*
@@ -83,7 +84,7 @@
#define PCG_128BIT_CONSTANT(high,low) \
((pcg_extras::pcg128_t(high) << 64) + low)
#else
- #error include "pcg_uint128.hpp"
+ #error #include "pcg_uint128.hpp"
namespace arrow20_vendored {
namespace pcg_extras {
typedef pcg_extras::uint_x4<uint32_t,uint64_t> pcg128_t;
diff --git a/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_random.hpp b/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_random.hpp
index f9f41a3fadc..7232c84be1a 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_random.hpp
+++ b/contrib/libs/apache/arrow_next/cpp/src/arrow/vendored/pcg/pcg_random.hpp
@@ -1,3 +1,4 @@
+#pragma clang system_header
/*
* PCG Random Number Generation for C++
*
diff --git a/contrib/libs/apache/arrow_next/cpp/src/generated/ya.make b/contrib/libs/apache/arrow_next/cpp/src/generated/ya.make
index 23b5ae9393c..83ce0cf34e7 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/generated/ya.make
+++ b/contrib/libs/apache/arrow_next/cpp/src/generated/ya.make
@@ -1,7 +1,7 @@
-# Generated by devtools/yamaker/ym2 from nixpkgs 23.05.
-
LIBRARY()
+WITHOUT_LICENSE_TEXTS()
+
FLATC_FLAGS(--scoped-enums)
SRCS(
diff --git a/contrib/libs/apache/arrow_next/cpp/src/parquet/xxhasher.cc b/contrib/libs/apache/arrow_next/cpp/src/parquet/xxhasher.cc
index c9d90250c27..3fa385816d6 100644
--- a/contrib/libs/apache/arrow_next/cpp/src/parquet/xxhasher.cc
+++ b/contrib/libs/apache/arrow_next/cpp/src/parquet/xxhasher.cc
@@ -17,7 +17,8 @@
#include "parquet/xxhasher.h"
-#include <xxhash.h>
+
+#include "contrib/libs/xxhash/xxhash.h"
namespace parquet20 {