summaryrefslogtreecommitdiffstats
path: root/contrib/libs/apache/arrow/cpp
diff options
context:
space:
mode:
authorbugaevskiy <[email protected]>2022-09-11 19:28:07 +0300
committerbugaevskiy <[email protected]>2022-09-11 19:28:07 +0300
commit98a6390ee5c37d5c326956bc8494581364d8c11b (patch)
tree905c352702680353118cce2b4de5ff40b730552a /contrib/libs/apache/arrow/cpp
parent269d61cb11390c773c2b69ec4e3326fd3a78dfa6 (diff)
Remove boost/multiprecision from metaproject
Diffstat (limited to 'contrib/libs/apache/arrow/cpp')
-rw-r--r--contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h b/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h
index ea7df209621..14cb51bacc7 100644
--- a/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h
+++ b/contrib/libs/apache/arrow/cpp/src/parquet/thrift_internal.h
@@ -23,7 +23,7 @@
// Check if thrift version < 0.11.0
// or if FORCE_BOOST_SMART_PTR is defined. Ref: https://thrift.apache.org/lib/cpp
#if defined(PARQUET_THRIFT_USE_BOOST) || defined(FORCE_BOOST_SMART_PTR)
-#include <boost/shared_ptr.hpp>
+#error #include <boost/shared_ptr.hpp>
#else
#include <memory>
#endif