File indexing completed on 2026-04-17 07:59:32
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #pragma once
0019
0020 #if defined(_WIN32) || defined(__CYGWIN__)
0021 # if defined(_MSC_VER)
0022 # pragma warning(push)
0023 # pragma warning(disable : 4251)
0024 # else
0025 # pragma GCC diagnostic ignored "-Wattributes"
0026 # endif
0027
0028 # ifdef ARROW_COMPUTE_STATIC
0029 # define ARROW_COMPUTE_EXPORT
0030 # elif defined(ARROW_COMPUTE_EXPORTING)
0031 # define ARROW_COMPUTE_EXPORT __declspec(dllexport)
0032 # else
0033 # define ARROW_COMPUTE_EXPORT __declspec(dllimport)
0034 # endif
0035
0036 # define ARROW_COMPUTE_NO_EXPORT
0037
0038 # if defined(_MSC_VER)
0039 # pragma warning(pop)
0040 # endif
0041
0042 #else
0043 # ifndef ARROW_COMPUTE_EXPORT
0044 # define ARROW_COMPUTE_EXPORT __attribute__((visibility("default")))
0045 # endif
0046 # ifndef ARROW_COMPUTE_NO_EXPORT
0047 # define ARROW_COMPUTE_NO_EXPORT __attribute__((visibility("hidden")))
0048 # endif
0049 #endif