File indexing completed on 2025-08-28 08:27:01
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_TESTING_STATIC
0029 # define ARROW_TESTING_EXPORT
0030 # elif defined(ARROW_TESTING_EXPORTING)
0031 # define ARROW_TESTING_EXPORT __declspec(dllexport)
0032 # else
0033 # define ARROW_TESTING_EXPORT __declspec(dllimport)
0034 # endif
0035
0036 # define ARROW_TESTING_NO_EXPORT
0037 #else
0038 # ifndef ARROW_TESTING_EXPORT
0039 # define ARROW_TESTING_EXPORT __attribute__((visibility("default")))
0040 # endif
0041 # ifndef ARROW_TESTING_NO_EXPORT
0042 # define ARROW_TESTING_NO_EXPORT __attribute__((visibility("hidden")))
0043 # endif
0044 #endif
0045
0046 #if defined(_MSC_VER)
0047 # pragma warning(pop)
0048 #endif