@dittolive/ditto 4.5.1 → 4.5.2-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (486) hide show
  1. package/DittoReactNative.podspec +2 -5
  2. package/README.md +2 -2
  3. package/node/ditto.cjs.js +2 -9653
  4. package/node/ditto.cjs.js.map +1 -0
  5. package/node/ditto.cjs.pretty.js +9655 -0
  6. package/node/ditto.cjs.pretty.js.map +1 -0
  7. package/node/ditto.darwin-arm64.node +0 -0
  8. package/node/ditto.darwin-x64.node +0 -0
  9. package/node/ditto.linux-x64.node +0 -0
  10. package/node/transports.darwin-arm64.node +0 -0
  11. package/node/transports.darwin-x64.node +0 -0
  12. package/package.json +31 -26
  13. package/react-native/android/build.gradle +2 -19
  14. package/react-native/cpp/include/Arc.hpp +141 -0
  15. package/react-native/cpp/include/Lifecycle.h +2 -1
  16. package/react-native/cpp/include/Misc.h +2 -1
  17. package/react-native/cpp/include/SmallPeerInfo.h +2 -0
  18. package/react-native/cpp/src/Authentication.cpp +17 -14
  19. package/react-native/cpp/src/DQL.cpp +10 -8
  20. package/react-native/cpp/src/Lifecycle.cpp +37 -2
  21. package/react-native/cpp/src/LiveQuery.cpp +2 -3
  22. package/react-native/cpp/src/Misc.cpp +15 -3
  23. package/react-native/cpp/src/Presence.cpp +8 -6
  24. package/react-native/cpp/src/SmallPeerInfo.cpp +34 -0
  25. package/react-native/cpp/src/main.cpp +6 -3
  26. package/react-native/dittoffi/dittoffi.h +186 -184
  27. package/react-native/lib/commonjs/ditto.rn.js +14 -15
  28. package/react-native/lib/commonjs/ditto.rn.js.map +1 -1
  29. package/react-native/lib/commonjs/index.js +61 -14
  30. package/react-native/lib/commonjs/index.js.map +1 -1
  31. package/react-native/lib/module/ditto.rn.js +16 -11
  32. package/react-native/lib/module/ditto.rn.js.map +1 -1
  33. package/react-native/lib/module/index.js +24 -10
  34. package/react-native/lib/module/index.js.map +1 -1
  35. package/react-native/lib/typescript/ditto.rn.d.ts.map +1 -1
  36. package/react-native/src/sources/@environment.ts +0 -1
  37. package/react-native/src/sources/attachment-fetcher-manager.ts +15 -0
  38. package/react-native/src/sources/attachment-fetcher.ts +10 -0
  39. package/react-native/src/sources/attachment.ts +15 -0
  40. package/react-native/src/sources/augment.ts +12 -0
  41. package/react-native/src/sources/base-pending-cursor-operation.ts +2 -0
  42. package/react-native/src/sources/bridge.ts +5 -1
  43. package/react-native/src/sources/build-time-constants.ts +5 -1
  44. package/react-native/src/sources/counter.ts +5 -0
  45. package/react-native/src/sources/ditto.ts +46 -12
  46. package/react-native/src/sources/document-id.ts +1 -1
  47. package/react-native/src/sources/document-path.ts +5 -2
  48. package/react-native/src/sources/document.ts +2 -1
  49. package/react-native/src/sources/epilogue.ts +6 -0
  50. package/react-native/src/sources/error.ts +7 -2
  51. package/react-native/src/sources/ffi-error.ts +6 -1
  52. package/react-native/src/sources/ffi.ts +51 -11
  53. package/react-native/src/sources/init.ts +2 -1
  54. package/react-native/src/sources/internal.ts +3 -7
  55. package/react-native/src/sources/keep-alive.ts +6 -2
  56. package/react-native/src/sources/key-path.ts +4 -1
  57. package/react-native/src/sources/live-query-manager.ts +5 -4
  58. package/react-native/src/sources/live-query.ts +2 -0
  59. package/react-native/src/sources/main.ts +60 -0
  60. package/react-native/src/sources/observer-manager.ts +5 -2
  61. package/react-native/src/sources/observer.ts +3 -1
  62. package/react-native/src/sources/pending-id-specific-operation.ts +4 -2
  63. package/react-native/src/sources/presence-manager.ts +2 -1
  64. package/react-native/src/sources/presence.ts +0 -5
  65. package/react-native/src/sources/register.ts +5 -2
  66. package/react-native/src/sources/small-peer-info.ts +1 -0
  67. package/react-native/src/sources/store-observer.ts +1 -0
  68. package/react-native/src/sources/store.ts +24 -4
  69. package/react-native/src/sources/subscription-manager.ts +2 -1
  70. package/react-native/src/sources/subscription.ts +1 -0
  71. package/react-native/src/sources/sync.ts +110 -46
  72. package/react-native/src/sources/transport-config.ts +2 -0
  73. package/react-native/src/sources/websocket-client.ts +1 -0
  74. package/react-native/src/sources/write-transaction-pending-id-specific-operation.ts +2 -0
  75. package/react-native/src/sources/write-transaction.ts +2 -0
  76. package/types/ditto.d.ts.map +1 -0
  77. package/web/ditto.es6.js +1 -1
  78. package/web/ditto.es6.js.map +1 -0
  79. package/web/ditto.es6.pretty.js +12600 -0
  80. package/web/ditto.es6.pretty.js.map +1 -0
  81. package/web/ditto.umd.js +1 -1
  82. package/web/ditto.umd.js.map +1 -0
  83. package/web/ditto.umd.pretty.js +12669 -0
  84. package/web/ditto.umd.pretty.js.map +1 -0
  85. package/web/ditto.wasm +0 -0
  86. package/node/ditto.linux-arm.node +0 -0
  87. package/node/ditto.win32-x64.node +0 -0
  88. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +0 -0
  89. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +0 -0
  90. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +0 -0
  91. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/reply/cache-v2-970081f7c58ab1625a1a.json +0 -1303
  92. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-e1bacde094ce7e389294.json +0 -203
  93. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-54964c7f44134b1cec4d.json +0 -60
  94. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +0 -14
  95. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/reply/index-2023-12-06T19-58-48-0479.json +0 -92
  96. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.cmake/api/v1/reply/target-cpp-Debug-a438adda6ad6df71f898.json +0 -314
  97. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.ninja_deps +0 -0
  98. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/.ninja_log +0 -21
  99. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeCache.txt +0 -393
  100. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +0 -79
  101. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +0 -90
  102. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +0 -0
  103. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +0 -0
  104. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +0 -113
  105. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +0 -803
  106. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +0 -0
  107. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -791
  108. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +0 -0
  109. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/CMakeOutput.log +0 -320
  110. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/TargetDirectories.txt +0 -3
  111. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cmake.check_cache +0 -1
  112. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Attachment.cpp.o +0 -0
  113. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Authentication.cpp.o +0 -0
  114. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Collection.cpp.o +0 -0
  115. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/DQL.cpp.o +0 -0
  116. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Document.cpp.o +0 -0
  117. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Identity.cpp.o +0 -0
  118. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Lifecycle.cpp.o +0 -0
  119. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/LiveQuery.cpp.o +0 -0
  120. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Logger.cpp.o +0 -0
  121. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Misc.cpp.o +0 -0
  122. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Presence.cpp.o +0 -0
  123. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/RetainableState.cpp.o +0 -0
  124. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/SmallPeerInfo.cpp.o +0 -0
  125. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Transports.cpp.o +0 -0
  126. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/TypedArray.cpp.o +0 -0
  127. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Utils.cpp.o +0 -0
  128. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/main.cpp.o +0 -0
  129. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/dittoffi/ifaddrs.cpp.o +0 -0
  130. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/cpp.dir/cpp-adapter.cpp.o +0 -0
  131. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/CMakeFiles/rules.ninja +0 -64
  132. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/additional_project_files.txt +0 -0
  133. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/android_gradle_build.json +0 -42
  134. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/android_gradle_build_mini.json +0 -31
  135. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/build.ninja +0 -297
  136. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/build_file_index.txt +0 -3
  137. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/cmake_install.cmake +0 -54
  138. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/compile_commands.json +0 -97
  139. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/compile_commands.json.bin +0 -0
  140. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/configure_fingerprint.bin +0 -8755
  141. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/metadata_generation_command.txt +0 -21
  142. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/prefab_config.json +0 -8
  143. package/react-native/android/.cxx/Debug/6p5m3p3q/arm64-v8a/symbol_folder_index.txt +0 -1
  144. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/query/client-agp/cache-v2 +0 -0
  145. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +0 -0
  146. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/query/client-agp/codemodel-v2 +0 -0
  147. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/reply/cache-v2-0cc74b41e95a51ba0457.json +0 -1303
  148. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-ee90fea936bce5771631.json +0 -203
  149. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-82fa8946198e6eba430b.json +0 -60
  150. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +0 -14
  151. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/reply/index-2023-12-06T19-58-48-0893.json +0 -92
  152. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.cmake/api/v1/reply/target-cpp-Debug-1e9d0b1a457f7fe5c618.json +0 -314
  153. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.ninja_deps +0 -0
  154. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/.ninja_log +0 -21
  155. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeCache.txt +0 -393
  156. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +0 -79
  157. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +0 -90
  158. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +0 -0
  159. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +0 -0
  160. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +0 -115
  161. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +0 -803
  162. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +0 -0
  163. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -791
  164. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +0 -0
  165. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/CMakeOutput.log +0 -304
  166. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/TargetDirectories.txt +0 -3
  167. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cmake.check_cache +0 -1
  168. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Attachment.cpp.o +0 -0
  169. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Authentication.cpp.o +0 -0
  170. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Collection.cpp.o +0 -0
  171. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/DQL.cpp.o +0 -0
  172. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Document.cpp.o +0 -0
  173. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Identity.cpp.o +0 -0
  174. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Lifecycle.cpp.o +0 -0
  175. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/LiveQuery.cpp.o +0 -0
  176. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Logger.cpp.o +0 -0
  177. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Misc.cpp.o +0 -0
  178. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Presence.cpp.o +0 -0
  179. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/RetainableState.cpp.o +0 -0
  180. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/SmallPeerInfo.cpp.o +0 -0
  181. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Transports.cpp.o +0 -0
  182. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/TypedArray.cpp.o +0 -0
  183. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Utils.cpp.o +0 -0
  184. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/main.cpp.o +0 -0
  185. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/dittoffi/ifaddrs.cpp.o +0 -0
  186. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/cpp.dir/cpp-adapter.cpp.o +0 -0
  187. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/CMakeFiles/rules.ninja +0 -64
  188. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/additional_project_files.txt +0 -0
  189. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/android_gradle_build.json +0 -42
  190. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/android_gradle_build_mini.json +0 -31
  191. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/build.ninja +0 -297
  192. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/build_file_index.txt +0 -3
  193. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/cmake_install.cmake +0 -54
  194. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/compile_commands.json +0 -97
  195. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/compile_commands.json.bin +0 -0
  196. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/configure_fingerprint.bin +0 -8755
  197. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/metadata_generation_command.txt +0 -21
  198. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/prefab_config.json +0 -8
  199. package/react-native/android/.cxx/Debug/6p5m3p3q/armeabi-v7a/symbol_folder_index.txt +0 -1
  200. package/react-native/android/.cxx/Debug/6p5m3p3q/hash_key.txt +0 -28
  201. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +0 -261
  202. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +0 -9
  203. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +0 -9
  204. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +0 -9
  205. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfig.cmake +0 -261
  206. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +0 -9
  207. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfig.cmake +0 -9
  208. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/armeabi-v7a/prefab/lib/arm-linux-androideabi/cmake/fbjni/fbjniConfigVersion.cmake +0 -9
  209. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +0 -261
  210. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86/prefab/lib/i686-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +0 -9
  211. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfig.cmake +0 -9
  212. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86/prefab/lib/i686-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +0 -9
  213. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +0 -261
  214. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +0 -9
  215. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +0 -9
  216. package/react-native/android/.cxx/Debug/6p5m3p3q/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +0 -9
  217. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/query/client-agp/cache-v2 +0 -0
  218. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +0 -0
  219. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/query/client-agp/codemodel-v2 +0 -0
  220. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/reply/cache-v2-6c4a25b4c6713ffdc5da.json +0 -1303
  221. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/reply/cmakeFiles-v1-f4200ba0f2ce507c91da.json +0 -203
  222. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/reply/codemodel-v2-9ea6ff99336eeb9a9ce9.json +0 -60
  223. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +0 -14
  224. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/reply/index-2023-12-06T19-58-49-0301.json +0 -92
  225. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.cmake/api/v1/reply/target-cpp-Debug-a88e6d0219517e1d531b.json +0 -314
  226. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.ninja_deps +0 -0
  227. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/.ninja_log +0 -21
  228. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeCache.txt +0 -393
  229. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +0 -79
  230. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +0 -90
  231. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +0 -0
  232. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +0 -0
  233. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +0 -113
  234. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +0 -803
  235. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +0 -0
  236. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -791
  237. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +0 -0
  238. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/CMakeOutput.log +0 -322
  239. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/TargetDirectories.txt +0 -3
  240. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cmake.check_cache +0 -1
  241. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Attachment.cpp.o +0 -0
  242. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Authentication.cpp.o +0 -0
  243. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Collection.cpp.o +0 -0
  244. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/DQL.cpp.o +0 -0
  245. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Document.cpp.o +0 -0
  246. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Identity.cpp.o +0 -0
  247. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Lifecycle.cpp.o +0 -0
  248. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/LiveQuery.cpp.o +0 -0
  249. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Logger.cpp.o +0 -0
  250. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Misc.cpp.o +0 -0
  251. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Presence.cpp.o +0 -0
  252. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/RetainableState.cpp.o +0 -0
  253. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/SmallPeerInfo.cpp.o +0 -0
  254. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Transports.cpp.o +0 -0
  255. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/TypedArray.cpp.o +0 -0
  256. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Utils.cpp.o +0 -0
  257. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/main.cpp.o +0 -0
  258. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/dittoffi/ifaddrs.cpp.o +0 -0
  259. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/cpp.dir/cpp-adapter.cpp.o +0 -0
  260. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/CMakeFiles/rules.ninja +0 -64
  261. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/additional_project_files.txt +0 -0
  262. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/android_gradle_build.json +0 -42
  263. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/android_gradle_build_mini.json +0 -31
  264. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/build.ninja +0 -297
  265. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/build_file_index.txt +0 -3
  266. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/cmake_install.cmake +0 -54
  267. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/compile_commands.json +0 -97
  268. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/compile_commands.json.bin +0 -0
  269. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/metadata_generation_command.txt +0 -21
  270. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/prefab_config.json +0 -8
  271. package/react-native/android/.cxx/Debug/6p5m3p3q/x86/symbol_folder_index.txt +0 -1
  272. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +0 -0
  273. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +0 -0
  274. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +0 -0
  275. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/reply/cache-v2-dae9c0e6f8d6c826f86e.json +0 -1303
  276. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-77b66408bf04fa403cf4.json +0 -203
  277. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/reply/codemodel-v2-00d5bd5dc4a882f89004.json +0 -60
  278. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +0 -14
  279. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/reply/index-2023-12-06T19-58-49-0701.json +0 -92
  280. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.cmake/api/v1/reply/target-cpp-Debug-ed2a7b63dedc1886a528.json +0 -314
  281. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.ninja_deps +0 -0
  282. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/.ninja_log +0 -21
  283. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeCache.txt +0 -393
  284. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +0 -79
  285. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +0 -90
  286. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +0 -0
  287. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +0 -0
  288. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +0 -113
  289. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +0 -803
  290. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +0 -0
  291. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -791
  292. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +0 -0
  293. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/CMakeOutput.log +0 -322
  294. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/TargetDirectories.txt +0 -3
  295. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cmake.check_cache +0 -1
  296. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Attachment.cpp.o +0 -0
  297. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Authentication.cpp.o +0 -0
  298. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Collection.cpp.o +0 -0
  299. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/DQL.cpp.o +0 -0
  300. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Document.cpp.o +0 -0
  301. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Identity.cpp.o +0 -0
  302. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Lifecycle.cpp.o +0 -0
  303. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/LiveQuery.cpp.o +0 -0
  304. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Logger.cpp.o +0 -0
  305. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Misc.cpp.o +0 -0
  306. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Presence.cpp.o +0 -0
  307. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/RetainableState.cpp.o +0 -0
  308. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/SmallPeerInfo.cpp.o +0 -0
  309. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Transports.cpp.o +0 -0
  310. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/TypedArray.cpp.o +0 -0
  311. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/Utils.cpp.o +0 -0
  312. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/cpp/src/main.cpp.o +0 -0
  313. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/Users/teodorc/Projects/IntegrationTest/node_modules/@dittolive/ditto/react-native/dittoffi/ifaddrs.cpp.o +0 -0
  314. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/cpp.dir/cpp-adapter.cpp.o +0 -0
  315. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/CMakeFiles/rules.ninja +0 -64
  316. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/additional_project_files.txt +0 -0
  317. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/android_gradle_build.json +0 -42
  318. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/android_gradle_build_mini.json +0 -31
  319. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/build.ninja +0 -297
  320. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/build_file_index.txt +0 -3
  321. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/cmake_install.cmake +0 -54
  322. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/compile_commands.json +0 -97
  323. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/compile_commands.json.bin +0 -0
  324. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/configure_fingerprint.bin +0 -8755
  325. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/metadata_generation_command.txt +0 -21
  326. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/prefab_config.json +0 -8
  327. package/react-native/android/.cxx/Debug/6p5m3p3q/x86_64/symbol_folder_index.txt +0 -1
  328. package/react-native/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +0 -97
  329. package/react-native/android/.cxx/tools/debug/armeabi-v7a/compile_commands.json +0 -97
  330. package/react-native/android/.cxx/tools/debug/x86/compile_commands.json +0 -97
  331. package/react-native/android/.cxx/tools/debug/x86_64/compile_commands.json +0 -97
  332. package/react-native/android/.gradle/8.5/checksums/checksums.lock +0 -0
  333. package/react-native/android/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
  334. package/react-native/android/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
  335. package/react-native/android/.gradle/8.5/fileChanges/last-build.bin +0 -0
  336. package/react-native/android/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
  337. package/react-native/android/.gradle/8.5/gc.properties +0 -0
  338. package/react-native/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  339. package/react-native/android/.gradle/buildOutputCleanup/cache.properties +0 -2
  340. package/react-native/android/.gradle/vcs-1/gc.properties +0 -0
  341. package/react-native/boost/boost/assert.hpp +0 -85
  342. package/react-native/boost/boost/config/abi/borland_prefix.hpp +0 -27
  343. package/react-native/boost/boost/config/abi/borland_suffix.hpp +0 -12
  344. package/react-native/boost/boost/config/abi/msvc_prefix.hpp +0 -22
  345. package/react-native/boost/boost/config/abi/msvc_suffix.hpp +0 -8
  346. package/react-native/boost/boost/config/abi_prefix.hpp +0 -25
  347. package/react-native/boost/boost/config/abi_suffix.hpp +0 -25
  348. package/react-native/boost/boost/config/assert_cxx03.hpp +0 -211
  349. package/react-native/boost/boost/config/assert_cxx11.hpp +0 -209
  350. package/react-native/boost/boost/config/assert_cxx14.hpp +0 -47
  351. package/react-native/boost/boost/config/assert_cxx17.hpp +0 -62
  352. package/react-native/boost/boost/config/assert_cxx20.hpp +0 -59
  353. package/react-native/boost/boost/config/assert_cxx98.hpp +0 -23
  354. package/react-native/boost/boost/config/auto_link.hpp +0 -525
  355. package/react-native/boost/boost/config/compiler/borland.hpp +0 -339
  356. package/react-native/boost/boost/config/compiler/clang.hpp +0 -366
  357. package/react-native/boost/boost/config/compiler/clang_version.hpp +0 -83
  358. package/react-native/boost/boost/config/compiler/codegear.hpp +0 -385
  359. package/react-native/boost/boost/config/compiler/comeau.hpp +0 -59
  360. package/react-native/boost/boost/config/compiler/common_edg.hpp +0 -183
  361. package/react-native/boost/boost/config/compiler/compaq_cxx.hpp +0 -19
  362. package/react-native/boost/boost/config/compiler/cray.hpp +0 -446
  363. package/react-native/boost/boost/config/compiler/diab.hpp +0 -26
  364. package/react-native/boost/boost/config/compiler/digitalmars.hpp +0 -143
  365. package/react-native/boost/boost/config/compiler/gcc.hpp +0 -383
  366. package/react-native/boost/boost/config/compiler/gcc_xml.hpp +0 -114
  367. package/react-native/boost/boost/config/compiler/greenhills.hpp +0 -28
  368. package/react-native/boost/boost/config/compiler/hp_acc.hpp +0 -149
  369. package/react-native/boost/boost/config/compiler/intel.hpp +0 -577
  370. package/react-native/boost/boost/config/compiler/kai.hpp +0 -33
  371. package/react-native/boost/boost/config/compiler/metrowerks.hpp +0 -198
  372. package/react-native/boost/boost/config/compiler/mpw.hpp +0 -140
  373. package/react-native/boost/boost/config/compiler/nvcc.hpp +0 -61
  374. package/react-native/boost/boost/config/compiler/pathscale.hpp +0 -138
  375. package/react-native/boost/boost/config/compiler/pgi.hpp +0 -23
  376. package/react-native/boost/boost/config/compiler/sgi_mipspro.hpp +0 -29
  377. package/react-native/boost/boost/config/compiler/sunpro_cc.hpp +0 -222
  378. package/react-native/boost/boost/config/compiler/vacpp.hpp +0 -186
  379. package/react-native/boost/boost/config/compiler/visualc.hpp +0 -391
  380. package/react-native/boost/boost/config/compiler/xlcpp.hpp +0 -299
  381. package/react-native/boost/boost/config/compiler/xlcpp_zos.hpp +0 -173
  382. package/react-native/boost/boost/config/detail/cxx_composite.hpp +0 -203
  383. package/react-native/boost/boost/config/detail/posix_features.hpp +0 -95
  384. package/react-native/boost/boost/config/detail/select_compiler_config.hpp +0 -157
  385. package/react-native/boost/boost/config/detail/select_platform_config.hpp +0 -147
  386. package/react-native/boost/boost/config/detail/select_stdlib_config.hpp +0 -121
  387. package/react-native/boost/boost/config/detail/suffix.hpp +0 -1294
  388. package/react-native/boost/boost/config/header_deprecated.hpp +0 -26
  389. package/react-native/boost/boost/config/helper_macros.hpp +0 -37
  390. package/react-native/boost/boost/config/no_tr1/cmath.hpp +0 -28
  391. package/react-native/boost/boost/config/no_tr1/complex.hpp +0 -28
  392. package/react-native/boost/boost/config/no_tr1/functional.hpp +0 -28
  393. package/react-native/boost/boost/config/no_tr1/memory.hpp +0 -28
  394. package/react-native/boost/boost/config/no_tr1/utility.hpp +0 -28
  395. package/react-native/boost/boost/config/platform/aix.hpp +0 -33
  396. package/react-native/boost/boost/config/platform/amigaos.hpp +0 -15
  397. package/react-native/boost/boost/config/platform/beos.hpp +0 -26
  398. package/react-native/boost/boost/config/platform/bsd.hpp +0 -83
  399. package/react-native/boost/boost/config/platform/cloudabi.hpp +0 -18
  400. package/react-native/boost/boost/config/platform/cray.hpp +0 -18
  401. package/react-native/boost/boost/config/platform/cygwin.hpp +0 -71
  402. package/react-native/boost/boost/config/platform/haiku.hpp +0 -31
  403. package/react-native/boost/boost/config/platform/hpux.hpp +0 -87
  404. package/react-native/boost/boost/config/platform/irix.hpp +0 -31
  405. package/react-native/boost/boost/config/platform/linux.hpp +0 -106
  406. package/react-native/boost/boost/config/platform/macos.hpp +0 -87
  407. package/react-native/boost/boost/config/platform/qnxnto.hpp +0 -31
  408. package/react-native/boost/boost/config/platform/solaris.hpp +0 -31
  409. package/react-native/boost/boost/config/platform/symbian.hpp +0 -97
  410. package/react-native/boost/boost/config/platform/vms.hpp +0 -25
  411. package/react-native/boost/boost/config/platform/vxworks.hpp +0 -422
  412. package/react-native/boost/boost/config/platform/wasm.hpp +0 -23
  413. package/react-native/boost/boost/config/platform/win32.hpp +0 -90
  414. package/react-native/boost/boost/config/platform/zos.hpp +0 -32
  415. package/react-native/boost/boost/config/pragma_message.hpp +0 -31
  416. package/react-native/boost/boost/config/requires_threads.hpp +0 -92
  417. package/react-native/boost/boost/config/stdlib/dinkumware.hpp +0 -324
  418. package/react-native/boost/boost/config/stdlib/libcomo.hpp +0 -93
  419. package/react-native/boost/boost/config/stdlib/libcpp.hpp +0 -180
  420. package/react-native/boost/boost/config/stdlib/libstdcpp3.hpp +0 -482
  421. package/react-native/boost/boost/config/stdlib/modena.hpp +0 -79
  422. package/react-native/boost/boost/config/stdlib/msl.hpp +0 -98
  423. package/react-native/boost/boost/config/stdlib/roguewave.hpp +0 -208
  424. package/react-native/boost/boost/config/stdlib/sgi.hpp +0 -168
  425. package/react-native/boost/boost/config/stdlib/stlport.hpp +0 -258
  426. package/react-native/boost/boost/config/stdlib/vacpp.hpp +0 -74
  427. package/react-native/boost/boost/config/stdlib/xlcpp_zos.hpp +0 -61
  428. package/react-native/boost/boost/config/user.hpp +0 -133
  429. package/react-native/boost/boost/config/warning_disable.hpp +0 -47
  430. package/react-native/boost/boost/config/workaround.hpp +0 -305
  431. package/react-native/boost/boost/config.hpp +0 -67
  432. package/react-native/boost/boost/cstdint.hpp +0 -556
  433. package/react-native/boost/boost/intrusive_ptr.hpp +0 -18
  434. package/react-native/boost/boost/smart_ptr/detail/atomic_count.hpp +0 -103
  435. package/react-native/boost/boost/smart_ptr/detail/atomic_count_gcc.hpp +0 -79
  436. package/react-native/boost/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp +0 -63
  437. package/react-native/boost/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp +0 -88
  438. package/react-native/boost/boost/smart_ptr/detail/atomic_count_nt.hpp +0 -66
  439. package/react-native/boost/boost/smart_ptr/detail/atomic_count_pt.hpp +0 -104
  440. package/react-native/boost/boost/smart_ptr/detail/atomic_count_spin.hpp +0 -69
  441. package/react-native/boost/boost/smart_ptr/detail/atomic_count_std_atomic.hpp +0 -67
  442. package/react-native/boost/boost/smart_ptr/detail/atomic_count_sync.hpp +0 -72
  443. package/react-native/boost/boost/smart_ptr/detail/atomic_count_win32.hpp +0 -70
  444. package/react-native/boost/boost/smart_ptr/detail/local_counted_base.hpp +0 -148
  445. package/react-native/boost/boost/smart_ptr/detail/local_sp_deleter.hpp +0 -91
  446. package/react-native/boost/boost/smart_ptr/detail/operator_bool.hpp +0 -64
  447. package/react-native/boost/boost/smart_ptr/detail/requires_cxx11.hpp +0 -23
  448. package/react-native/boost/boost/smart_ptr/detail/shared_count.hpp +0 -707
  449. package/react-native/boost/boost/smart_ptr/detail/sp_convertible.hpp +0 -92
  450. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base.hpp +0 -92
  451. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp +0 -163
  452. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_aix.hpp +0 -152
  453. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp +0 -185
  454. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp +0 -148
  455. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp +0 -170
  456. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +0 -200
  457. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp +0 -194
  458. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp +0 -179
  459. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp +0 -186
  460. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_nt.hpp +0 -119
  461. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_pt.hpp +0 -147
  462. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp +0 -174
  463. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_spin.hpp +0 -141
  464. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp +0 -147
  465. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_sync.hpp +0 -165
  466. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +0 -163
  467. package/react-native/boost/boost/smart_ptr/detail/sp_counted_base_w32.hpp +0 -140
  468. package/react-native/boost/boost/smart_ptr/detail/sp_counted_impl.hpp +0 -309
  469. package/react-native/boost/boost/smart_ptr/detail/sp_disable_deprecated.hpp +0 -40
  470. package/react-native/boost/boost/smart_ptr/detail/sp_forward.hpp +0 -52
  471. package/react-native/boost/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp +0 -27
  472. package/react-native/boost/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp +0 -69
  473. package/react-native/boost/boost/smart_ptr/detail/sp_interlocked.hpp +0 -173
  474. package/react-native/boost/boost/smart_ptr/detail/sp_noexcept.hpp +0 -48
  475. package/react-native/boost/boost/smart_ptr/detail/sp_nullptr_t.hpp +0 -45
  476. package/react-native/boost/boost/smart_ptr/detail/sp_obsolete.hpp +0 -32
  477. package/react-native/boost/boost/smart_ptr/detail/sp_thread_pause.hpp +0 -51
  478. package/react-native/boost/boost/smart_ptr/detail/sp_thread_sleep.hpp +0 -104
  479. package/react-native/boost/boost/smart_ptr/detail/sp_thread_yield.hpp +0 -100
  480. package/react-native/boost/boost/smart_ptr/detail/sp_typeinfo_.hpp +0 -58
  481. package/react-native/boost/boost/smart_ptr/detail/sp_win32_sleep.hpp +0 -49
  482. package/react-native/boost/boost/smart_ptr/intrusive_ptr.hpp +0 -409
  483. package/react-native/boost/boost/smart_ptr/intrusive_ref_counter.hpp +0 -188
  484. package/react-native/cpp/include/RetainableState.h +0 -24
  485. package/react-native/cpp/src/RetainableState.cpp +0 -15
  486. package/react-native/scripts/ruby/include_local_boost.rb +0 -78
@@ -1,83 +0,0 @@
1
- // Copyright 2021 Peter Dimov
2
- // Distributed under the Boost Software License, Version 1.0.
3
- // https://www.boost.org/LICENSE_1_0.txt)
4
-
5
- #if !defined(__APPLE__)
6
-
7
- # define BOOST_CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__ % 100)
8
-
9
- #else
10
- # define BOOST_CLANG_REPORTED_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__ % 100)
11
-
12
- // https://en.wikipedia.org/wiki/Xcode#Toolchain_versions
13
-
14
- # if BOOST_CLANG_REPORTED_VERSION >= 140000
15
- # define BOOST_CLANG_VERSION 140000
16
-
17
- # elif BOOST_CLANG_REPORTED_VERSION >= 130100
18
- # define BOOST_CLANG_VERSION 130000
19
-
20
- # elif BOOST_CLANG_REPORTED_VERSION >= 130000
21
- # define BOOST_CLANG_VERSION 120000
22
-
23
- # elif BOOST_CLANG_REPORTED_VERSION >= 120005
24
- # define BOOST_CLANG_VERSION 110100
25
-
26
- # elif BOOST_CLANG_REPORTED_VERSION >= 120000
27
- # define BOOST_CLANG_VERSION 100000
28
-
29
- # elif BOOST_CLANG_REPORTED_VERSION >= 110003
30
- # define BOOST_CLANG_VERSION 90000
31
-
32
- # elif BOOST_CLANG_REPORTED_VERSION >= 110000
33
- # define BOOST_CLANG_VERSION 80000
34
-
35
- # elif BOOST_CLANG_REPORTED_VERSION >= 100001
36
- # define BOOST_CLANG_VERSION 70000
37
-
38
- # elif BOOST_CLANG_REPORTED_VERSION >= 100000
39
- # define BOOST_CLANG_VERSION 60001
40
-
41
- # elif BOOST_CLANG_REPORTED_VERSION >= 90100
42
- # define BOOST_CLANG_VERSION 50002
43
-
44
- # elif BOOST_CLANG_REPORTED_VERSION >= 90000
45
- # define BOOST_CLANG_VERSION 40000
46
-
47
- # elif BOOST_CLANG_REPORTED_VERSION >= 80000
48
- # define BOOST_CLANG_VERSION 30900
49
-
50
- # elif BOOST_CLANG_REPORTED_VERSION >= 70300
51
- # define BOOST_CLANG_VERSION 30800
52
-
53
- # elif BOOST_CLANG_REPORTED_VERSION >= 70000
54
- # define BOOST_CLANG_VERSION 30700
55
-
56
- # elif BOOST_CLANG_REPORTED_VERSION >= 60100
57
- # define BOOST_CLANG_VERSION 30600
58
-
59
- # elif BOOST_CLANG_REPORTED_VERSION >= 60000
60
- # define BOOST_CLANG_VERSION 30500
61
-
62
- # elif BOOST_CLANG_REPORTED_VERSION >= 50100
63
- # define BOOST_CLANG_VERSION 30400
64
-
65
- # elif BOOST_CLANG_REPORTED_VERSION >= 50000
66
- # define BOOST_CLANG_VERSION 30300
67
-
68
- # elif BOOST_CLANG_REPORTED_VERSION >= 40200
69
- # define BOOST_CLANG_VERSION 30200
70
-
71
- # elif BOOST_CLANG_REPORTED_VERSION >= 30100
72
- # define BOOST_CLANG_VERSION 30100
73
-
74
- # elif BOOST_CLANG_REPORTED_VERSION >= 20100
75
- # define BOOST_CLANG_VERSION 30000
76
-
77
- # else
78
- # define BOOST_CLANG_VERSION 20900
79
-
80
- # endif
81
-
82
- # undef BOOST_CLANG_REPORTED_VERSION
83
- #endif
@@ -1,385 +0,0 @@
1
- // (C) Copyright John Maddock 2001 - 2003.
2
- // (C) Copyright David Abrahams 2002 - 2003.
3
- // (C) Copyright Aleksey Gurtovoy 2002.
4
- // Use, modification and distribution are subject to the
5
- // Boost Software License, Version 1.0. (See accompanying file
6
- // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
-
8
- // See http://www.boost.org for most recent version.
9
-
10
- // CodeGear C++ compiler setup:
11
-
12
- //
13
- // versions check:
14
- // last known and checked version is 0x740
15
- #if (__CODEGEARC__ > 0x740)
16
- # if defined(BOOST_ASSERT_CONFIG)
17
- # error "boost: Unknown compiler version - please run the configure tests and report the results"
18
- # else
19
- # pragma message( "boost: Unknown compiler version - please run the configure tests and report the results")
20
- # endif
21
- #endif
22
-
23
- #ifdef __clang__ // Clang enhanced Windows compiler
24
-
25
- # include "clang.hpp"
26
- # define BOOST_NO_CXX11_THREAD_LOCAL
27
- # define BOOST_NO_CXX11_ATOMIC_SMART_PTR
28
-
29
- // This bug has been reported to Embarcadero
30
-
31
- #if defined(BOOST_HAS_INT128)
32
- #undef BOOST_HAS_INT128
33
- #endif
34
- #if defined(BOOST_HAS_FLOAT128)
35
- #undef BOOST_HAS_FLOAT128
36
- #endif
37
-
38
- // The clang-based compilers can not do 128 atomic exchanges
39
-
40
- #define BOOST_ATOMIC_NO_CMPXCHG16B
41
-
42
- // 32 functions are missing from the current RTL in cwchar, so it really can not be used even if it exists
43
-
44
- # define BOOST_NO_CWCHAR
45
-
46
- # ifndef __MT__ /* If compiling in single-threaded mode, assume there is no CXX11_HDR_ATOMIC */
47
- # define BOOST_NO_CXX11_HDR_ATOMIC
48
- # endif
49
-
50
- /* temporarily disable this until we can link against fegetround fesetround feholdexcept */
51
-
52
- #define BOOST_NO_FENV_H
53
-
54
- /* Reported this bug to Embarcadero with the latest C++ Builder Rio release */
55
-
56
- #define BOOST_NO_CXX11_HDR_EXCEPTION
57
-
58
- //
59
- // check for exception handling support:
60
- //
61
- #if !defined(_CPPUNWIND) && !defined(__EXCEPTIONS) && !defined(BOOST_NO_EXCEPTIONS)
62
- # define BOOST_NO_EXCEPTIONS
63
- #endif
64
-
65
- /*
66
-
67
- // On non-Win32 platforms let the platform config figure this out:
68
- #ifdef _WIN32
69
- # define BOOST_HAS_STDINT_H
70
- #endif
71
-
72
- //
73
- // __int64:
74
- //
75
- #if !defined(__STRICT_ANSI__)
76
- # define BOOST_HAS_MS_INT64
77
- #endif
78
- //
79
- // all versions have a <dirent.h>:
80
- //
81
- #if !defined(__STRICT_ANSI__)
82
- # define BOOST_HAS_DIRENT_H
83
- #endif
84
- //
85
- // Disable Win32 support in ANSI mode:
86
- //
87
- # pragma defineonoption BOOST_DISABLE_WIN32 -A
88
- //
89
- // MSVC compatibility mode does some nasty things:
90
- // TODO: look up if this doesn't apply to the whole 12xx range
91
- //
92
- #if defined(_MSC_VER) && (_MSC_VER <= 1200)
93
- # define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
94
- # define BOOST_NO_VOID_RETURNS
95
- #endif
96
- //
97
-
98
- */
99
-
100
- // Specific settings for Embarcadero drivers
101
- # define BOOST_EMBTC __CODEGEARC__
102
- # define BOOST_EMBTC_FULL_VER ((__clang_major__ << 16) | \
103
- (__clang_minor__ << 8) | \
104
- __clang_patchlevel__ )
105
-
106
- // Detecting which Embarcadero driver is being used
107
- #if defined(BOOST_EMBTC)
108
- # if defined(_WIN64)
109
- # define BOOST_EMBTC_WIN64 1
110
- # define BOOST_EMBTC_WINDOWS 1
111
- # ifndef BOOST_USE_WINDOWS_H
112
- # define BOOST_USE_WINDOWS_H
113
- # endif
114
- # elif defined(_WIN32)
115
- # define BOOST_EMBTC_WIN32C 1
116
- # define BOOST_EMBTC_WINDOWS 1
117
- # ifndef BOOST_USE_WINDOWS_H
118
- # define BOOST_USE_WINDOWS_H
119
- # endif
120
- # elif defined(__APPLE__) && defined(__arm__)
121
- # define BOOST_EMBTC_IOSARM 1
122
- # define BOOST_EMBTC_IOS 1
123
- # elif defined(__APPLE__) && defined(__aarch64__)
124
- # define BOOST_EMBTC_IOSARM64 1
125
- # define BOOST_EMBTC_IOS 1
126
- # elif defined(__ANDROID__) && defined(__arm__)
127
- # define BOOST_EMBTC_AARM 1
128
- # define BOOST_EMBTC_ANDROID 1
129
- # elif
130
- # if defined(BOOST_ASSERT_CONFIG)
131
- # error "Unknown Embarcadero driver"
132
- # else
133
- # warning "Unknown Embarcadero driver"
134
- # endif /* defined(BOOST_ASSERT_CONFIG) */
135
- # endif
136
- #endif /* defined(BOOST_EMBTC) */
137
-
138
- #if defined(BOOST_EMBTC_WINDOWS)
139
-
140
- #if !defined(_chdir)
141
- #define _chdir(x) chdir(x)
142
- #endif
143
-
144
- #if !defined(_dup2)
145
- #define _dup2(x,y) dup2(x,y)
146
- #endif
147
-
148
- #endif
149
-
150
- # undef BOOST_COMPILER
151
- # define BOOST_COMPILER "Embarcadero-Clang C++ version " BOOST_STRINGIZE(__CODEGEARC__) " clang: " __clang_version__
152
- // # define __CODEGEARC_CLANG__ __CODEGEARC__
153
- // # define __EMBARCADERO_CLANG__ __CODEGEARC__
154
- // # define __BORLANDC_CLANG__ __BORLANDC__
155
-
156
- #else // #if !defined(__clang__)
157
-
158
- # define BOOST_CODEGEARC __CODEGEARC__
159
- # define BOOST_BORLANDC __BORLANDC__
160
-
161
- #if !defined( BOOST_WITH_CODEGEAR_WARNINGS )
162
- // these warnings occur frequently in optimized template code
163
- # pragma warn -8004 // var assigned value, but never used
164
- # pragma warn -8008 // condition always true/false
165
- # pragma warn -8066 // dead code can never execute
166
- # pragma warn -8104 // static members with ctors not threadsafe
167
- # pragma warn -8105 // reference member in class without ctors
168
- #endif
169
-
170
- // CodeGear C++ Builder 2009
171
- #if (__CODEGEARC__ <= 0x613)
172
- # define BOOST_NO_INTEGRAL_INT64_T
173
- # define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
174
- # define BOOST_NO_PRIVATE_IN_AGGREGATE
175
- # define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
176
- // we shouldn't really need this - but too many things choke
177
- // without it, this needs more investigation:
178
- # define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
179
- # define BOOST_SP_NO_SP_CONVERTIBLE
180
- #endif
181
-
182
- // CodeGear C++ Builder 2010
183
- #if (__CODEGEARC__ <= 0x621)
184
- # define BOOST_NO_TYPENAME_WITH_CTOR // Cannot use typename keyword when making temporaries of a dependant type
185
- # define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
186
- # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
187
- # define BOOST_NO_NESTED_FRIENDSHIP // TC1 gives nested classes access rights as any other member
188
- # define BOOST_NO_USING_TEMPLATE
189
- # define BOOST_NO_TWO_PHASE_NAME_LOOKUP
190
- // Temporary hack, until specific MPL preprocessed headers are generated
191
- # define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
192
-
193
- // CodeGear has not yet completely implemented value-initialization, for
194
- // example for array types, as I reported in 2010: Embarcadero Report 83751,
195
- // "Value-initialization: arrays should have each element value-initialized",
196
- // http://qc.embarcadero.com/wc/qcmain.aspx?d=83751
197
- // Last checked version: Embarcadero C++ 6.21
198
- // See also: http://www.boost.org/libs/utility/value_init.htm#compiler_issues
199
- // (Niels Dekker, LKEB, April 2010)
200
- # define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
201
-
202
- # if defined(NDEBUG) && defined(__cplusplus)
203
- // fix broken <cstring> so that Boost.test works:
204
- # include <cstring>
205
- # undef strcmp
206
- # endif
207
- // fix broken errno declaration:
208
- # include <errno.h>
209
- # ifndef errno
210
- # define errno errno
211
- # endif
212
-
213
- #endif
214
-
215
- // Reportedly, #pragma once is supported since C++ Builder 2010
216
- #if (__CODEGEARC__ >= 0x620)
217
- # define BOOST_HAS_PRAGMA_ONCE
218
- #endif
219
-
220
- #define BOOST_NO_FENV_H
221
-
222
- //
223
- // C++0x macros:
224
- //
225
- #if (__CODEGEARC__ <= 0x620)
226
- #define BOOST_NO_CXX11_STATIC_ASSERT
227
- #else
228
- #define BOOST_HAS_STATIC_ASSERT
229
- #endif
230
- #define BOOST_HAS_CHAR16_T
231
- #define BOOST_HAS_CHAR32_T
232
- #define BOOST_HAS_LONG_LONG
233
- // #define BOOST_HAS_ALIGNOF
234
- #define BOOST_HAS_DECLTYPE
235
- #define BOOST_HAS_EXPLICIT_CONVERSION_OPS
236
- // #define BOOST_HAS_RVALUE_REFS
237
- #define BOOST_HAS_SCOPED_ENUM
238
- // #define BOOST_HAS_STATIC_ASSERT
239
- #define BOOST_HAS_STD_TYPE_TRAITS
240
-
241
- #define BOOST_NO_CXX11_AUTO_DECLARATIONS
242
- #define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
243
- #define BOOST_NO_CXX11_CONSTEXPR
244
- #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
245
- #define BOOST_NO_CXX11_DELETED_FUNCTIONS
246
- #define BOOST_NO_CXX11_EXTERN_TEMPLATE
247
- #define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
248
- #define BOOST_NO_CXX11_LAMBDAS
249
- #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
250
- #define BOOST_NO_CXX11_NOEXCEPT
251
- #define BOOST_NO_CXX11_NULLPTR
252
- #define BOOST_NO_CXX11_RANGE_BASED_FOR
253
- #define BOOST_NO_CXX11_RAW_LITERALS
254
- #define BOOST_NO_CXX11_RVALUE_REFERENCES
255
- #define BOOST_NO_SFINAE_EXPR
256
- #define BOOST_NO_CXX11_SFINAE_EXPR
257
- #define BOOST_NO_CXX11_TEMPLATE_ALIASES
258
- #define BOOST_NO_CXX11_UNICODE_LITERALS
259
- #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
260
- #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
261
- #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
262
- #define BOOST_NO_CXX11_ALIGNAS
263
- #define BOOST_NO_CXX11_ALIGNOF
264
- #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
265
- #define BOOST_NO_CXX11_INLINE_NAMESPACES
266
- #define BOOST_NO_CXX11_REF_QUALIFIERS
267
- #define BOOST_NO_CXX11_FINAL
268
- #define BOOST_NO_CXX11_OVERRIDE
269
- #define BOOST_NO_CXX11_THREAD_LOCAL
270
- #define BOOST_NO_CXX11_DECLTYPE_N3276
271
- #define BOOST_NO_CXX11_UNRESTRICTED_UNION
272
-
273
- // C++ 14:
274
- #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
275
- # define BOOST_NO_CXX14_AGGREGATE_NSDMI
276
- #endif
277
- #if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304)
278
- # define BOOST_NO_CXX14_BINARY_LITERALS
279
- #endif
280
- #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
281
- # define BOOST_NO_CXX14_CONSTEXPR
282
- #endif
283
- #if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304)
284
- # define BOOST_NO_CXX14_DECLTYPE_AUTO
285
- #endif
286
- #if (__cplusplus < 201304) // There's no SD6 check for this....
287
- # define BOOST_NO_CXX14_DIGIT_SEPARATORS
288
- #endif
289
- #if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304)
290
- # define BOOST_NO_CXX14_GENERIC_LAMBDAS
291
- #endif
292
- #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304)
293
- # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
294
- #endif
295
- #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304)
296
- # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
297
- #endif
298
- #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
299
- # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
300
- #endif
301
-
302
- // C++17
303
- #if !defined(__cpp_structured_bindings) || (__cpp_structured_bindings < 201606)
304
- # define BOOST_NO_CXX17_STRUCTURED_BINDINGS
305
- #endif
306
-
307
- #if !defined(__cpp_inline_variables) || (__cpp_inline_variables < 201606)
308
- # define BOOST_NO_CXX17_INLINE_VARIABLES
309
- #endif
310
-
311
- #if !defined(__cpp_fold_expressions) || (__cpp_fold_expressions < 201603)
312
- # define BOOST_NO_CXX17_FOLD_EXPRESSIONS
313
- #endif
314
-
315
- #if !defined(__cpp_if_constexpr) || (__cpp_if_constexpr < 201606)
316
- # define BOOST_NO_CXX17_IF_CONSTEXPR
317
- #endif
318
-
319
- //
320
- // TR1 macros:
321
- //
322
- #define BOOST_HAS_TR1_HASH
323
- #define BOOST_HAS_TR1_TYPE_TRAITS
324
- #define BOOST_HAS_TR1_UNORDERED_MAP
325
- #define BOOST_HAS_TR1_UNORDERED_SET
326
-
327
- #define BOOST_HAS_MACRO_USE_FACET
328
-
329
- #define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
330
-
331
- // On non-Win32 platforms let the platform config figure this out:
332
- #ifdef _WIN32
333
- # define BOOST_HAS_STDINT_H
334
- #endif
335
-
336
- //
337
- // __int64:
338
- //
339
- #if !defined(__STRICT_ANSI__)
340
- # define BOOST_HAS_MS_INT64
341
- #endif
342
- //
343
- // check for exception handling support:
344
- //
345
- #if !defined(_CPPUNWIND) && !defined(BOOST_CPPUNWIND) && !defined(__EXCEPTIONS) && !defined(BOOST_NO_EXCEPTIONS)
346
- # define BOOST_NO_EXCEPTIONS
347
- #endif
348
- //
349
- // all versions have a <dirent.h>:
350
- //
351
- #if !defined(__STRICT_ANSI__)
352
- # define BOOST_HAS_DIRENT_H
353
- #endif
354
- //
355
- // all versions support __declspec:
356
- //
357
- #if defined(__STRICT_ANSI__)
358
- // config/platform/win32.hpp will define BOOST_SYMBOL_EXPORT, etc., unless already defined
359
- # define BOOST_SYMBOL_EXPORT
360
- #endif
361
- //
362
- // ABI fixing headers:
363
- //
364
- #ifndef BOOST_ABI_PREFIX
365
- # define BOOST_ABI_PREFIX "boost/config/abi/borland_prefix.hpp"
366
- #endif
367
- #ifndef BOOST_ABI_SUFFIX
368
- # define BOOST_ABI_SUFFIX "boost/config/abi/borland_suffix.hpp"
369
- #endif
370
- //
371
- // Disable Win32 support in ANSI mode:
372
- //
373
- # pragma defineonoption BOOST_DISABLE_WIN32 -A
374
- //
375
- // MSVC compatibility mode does some nasty things:
376
- // TODO: look up if this doesn't apply to the whole 12xx range
377
- //
378
- #if defined(_MSC_VER) && (_MSC_VER <= 1200)
379
- # define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
380
- # define BOOST_NO_VOID_RETURNS
381
- #endif
382
-
383
- #define BOOST_COMPILER "CodeGear C++ version " BOOST_STRINGIZE(__CODEGEARC__)
384
-
385
- #endif // #if !defined(__clang__)
@@ -1,59 +0,0 @@
1
- // (C) Copyright John Maddock 2001.
2
- // (C) Copyright Douglas Gregor 2001.
3
- // (C) Copyright Peter Dimov 2001.
4
- // (C) Copyright Aleksey Gurtovoy 2003.
5
- // (C) Copyright Beman Dawes 2003.
6
- // (C) Copyright Jens Maurer 2003.
7
- // Use, modification and distribution are subject to the
8
- // Boost Software License, Version 1.0. (See accompanying file
9
- // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10
-
11
- // See http://www.boost.org for most recent version.
12
-
13
- // Comeau C++ compiler setup:
14
-
15
- #include <boost/config/compiler/common_edg.hpp>
16
-
17
- #if (__COMO_VERSION__ <= 4245)
18
-
19
- # if defined(_MSC_VER) && _MSC_VER <= 1300
20
- # if _MSC_VER > 100
21
- // only set this in non-strict mode:
22
- # define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
23
- # endif
24
- # endif
25
-
26
- // Void returns don't work when emulating VC 6 (Peter Dimov)
27
- // TODO: look up if this doesn't apply to the whole 12xx range
28
- # if defined(_MSC_VER) && (_MSC_VER < 1300)
29
- # define BOOST_NO_VOID_RETURNS
30
- # endif
31
-
32
- #endif // version 4245
33
-
34
- //
35
- // enable __int64 support in VC emulation mode
36
- //
37
- # if defined(_MSC_VER) && (_MSC_VER >= 1200)
38
- # define BOOST_HAS_MS_INT64
39
- # endif
40
-
41
- #define BOOST_COMPILER "Comeau compiler version " BOOST_STRINGIZE(__COMO_VERSION__)
42
-
43
- //
44
- // versions check:
45
- // we don't know Comeau prior to version 4245:
46
- #if __COMO_VERSION__ < 4245
47
- # error "Compiler not configured - please reconfigure"
48
- #endif
49
- //
50
- // last known and checked version is 4245:
51
- #if (__COMO_VERSION__ > 4245)
52
- # if defined(BOOST_ASSERT_CONFIG)
53
- # error "boost: Unknown compiler version - please run the configure tests and report the results"
54
- # endif
55
- #endif
56
-
57
-
58
-
59
-
@@ -1,183 +0,0 @@
1
- // (C) Copyright John Maddock 2001 - 2002.
2
- // (C) Copyright Jens Maurer 2001.
3
- // (C) Copyright David Abrahams 2002.
4
- // (C) Copyright Aleksey Gurtovoy 2002.
5
- // (C) Copyright Markus Schoepflin 2005.
6
- // Use, modification and distribution are subject to the
7
- // Boost Software License, Version 1.0. (See accompanying file
8
- // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9
-
10
- // See http://www.boost.org for most recent version.
11
-
12
- //
13
- // Options common to all edg based compilers.
14
- //
15
- // This is included from within the individual compiler mini-configs.
16
-
17
- #ifndef __EDG_VERSION__
18
- # error This file requires that __EDG_VERSION__ be defined.
19
- #endif
20
-
21
- #if (__EDG_VERSION__ <= 238)
22
- # define BOOST_NO_INTEGRAL_INT64_T
23
- # define BOOST_NO_SFINAE
24
- #endif
25
-
26
- #if (__EDG_VERSION__ <= 240)
27
- # define BOOST_NO_VOID_RETURNS
28
- #endif
29
-
30
- #if (__EDG_VERSION__ <= 241) && !defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP)
31
- # define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
32
- #endif
33
-
34
- #if (__EDG_VERSION__ <= 244) && !defined(BOOST_NO_TEMPLATE_TEMPLATES)
35
- # define BOOST_NO_TEMPLATE_TEMPLATES
36
- #endif
37
-
38
- #if (__EDG_VERSION__ < 300) && !defined(BOOST_NO_IS_ABSTRACT)
39
- # define BOOST_NO_IS_ABSTRACT
40
- #endif
41
-
42
- #if (__EDG_VERSION__ <= 303) && !defined(BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL)
43
- # define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
44
- #endif
45
-
46
- // See also kai.hpp which checks a Kai-specific symbol for EH
47
- # if !defined(__KCC) && !defined(__EXCEPTIONS) && !defined(BOOST_NO_EXCEPTIONS)
48
- # define BOOST_NO_EXCEPTIONS
49
- # endif
50
-
51
- # if !defined(__NO_LONG_LONG)
52
- # define BOOST_HAS_LONG_LONG
53
- # else
54
- # define BOOST_NO_LONG_LONG
55
- # endif
56
-
57
- // Not sure what version was the first to support #pragma once, but
58
- // different EDG-based compilers (e.g. Intel) supported it for ages.
59
- // Add a proper version check if it causes problems.
60
- #define BOOST_HAS_PRAGMA_ONCE
61
-
62
- //
63
- // C++0x features
64
- //
65
- // See above for BOOST_NO_LONG_LONG
66
- //
67
- #if (__EDG_VERSION__ < 310)
68
- # define BOOST_NO_CXX11_EXTERN_TEMPLATE
69
- #endif
70
- #if (__EDG_VERSION__ <= 310)
71
- // No support for initializer lists
72
- # define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
73
- #endif
74
- #if (__EDG_VERSION__ < 400)
75
- # define BOOST_NO_CXX11_VARIADIC_MACROS
76
- #endif
77
-
78
- #define BOOST_NO_CXX11_AUTO_DECLARATIONS
79
- #define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
80
- #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
81
- #define BOOST_NO_CXX11_DELETED_FUNCTIONS
82
- #define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
83
- #define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
84
- #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
85
- #define BOOST_NO_CXX11_NOEXCEPT
86
- #define BOOST_NO_CXX11_NULLPTR
87
- #define BOOST_NO_CXX11_RVALUE_REFERENCES
88
- #define BOOST_NO_CXX11_SCOPED_ENUMS
89
- #define BOOST_NO_SFINAE_EXPR
90
- #define BOOST_NO_CXX11_SFINAE_EXPR
91
- #define BOOST_NO_CXX11_STATIC_ASSERT
92
- #define BOOST_NO_CXX11_TEMPLATE_ALIASES
93
- #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
94
- #define BOOST_NO_CXX11_ALIGNAS
95
- #define BOOST_NO_CXX11_ALIGNOF
96
- #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
97
- #define BOOST_NO_CXX11_INLINE_NAMESPACES
98
- #define BOOST_NO_CXX11_REF_QUALIFIERS
99
- #define BOOST_NO_CXX11_FINAL
100
- #define BOOST_NO_CXX11_OVERRIDE
101
- #define BOOST_NO_CXX11_THREAD_LOCAL
102
- #define BOOST_NO_CXX11_UNRESTRICTED_UNION
103
-
104
- //__cpp_decltype 200707 possibly?
105
- #define BOOST_NO_CXX11_DECLTYPE
106
- #define BOOST_NO_CXX11_DECLTYPE_N3276
107
-
108
- #if !defined(__cpp_unicode_characters) || (__cpp_unicode_characters < 200704)
109
- # define BOOST_NO_CXX11_CHAR16_T
110
- # define BOOST_NO_CXX11_CHAR32_T
111
- #endif
112
- #if !defined(__cpp_unicode_literals) || (__cpp_unicode_literals < 200710)
113
- # define BOOST_NO_CXX11_UNICODE_LITERALS
114
- #endif
115
- #if !defined(__cpp_user_defined_literals) || (__cpp_user_defined_literals < 200809)
116
- # define BOOST_NO_CXX11_USER_DEFINED_LITERALS
117
- #endif
118
- #if !defined(__cpp_variadic_templates) || (__cpp_variadic_templates < 200704)
119
- # define BOOST_NO_CXX11_VARIADIC_TEMPLATES
120
- #endif
121
- #if !defined(__cpp_constexpr) || (__cpp_constexpr < 200907)
122
- # define BOOST_NO_CXX11_CONSTEXPR
123
- #endif
124
- #if !defined(__cpp_lambdas) || (__cpp_lambdas < 200907)
125
- # define BOOST_NO_CXX11_LAMBDAS
126
- #endif
127
- #if !defined(__cpp_range_based_for) || (__cpp_range_based_for < 200710)
128
- # define BOOST_NO_CXX11_RANGE_BASED_FOR
129
- #endif
130
- #if !defined(__cpp_raw_strings) || (__cpp_raw_strings < 200610)
131
- # define BOOST_NO_CXX11_RAW_LITERALS
132
- #endif
133
-
134
-
135
- // C++ 14:
136
- #if !defined(__cpp_aggregate_nsdmi) || (__cpp_aggregate_nsdmi < 201304)
137
- # define BOOST_NO_CXX14_AGGREGATE_NSDMI
138
- #endif
139
- #if !defined(__cpp_binary_literals) || (__cpp_binary_literals < 201304)
140
- # define BOOST_NO_CXX14_BINARY_LITERALS
141
- #endif
142
- #if !defined(__cpp_constexpr) || (__cpp_constexpr < 201304)
143
- # define BOOST_NO_CXX14_CONSTEXPR
144
- #endif
145
- #if !defined(__cpp_decltype_auto) || (__cpp_decltype_auto < 201304)
146
- # define BOOST_NO_CXX14_DECLTYPE_AUTO
147
- #endif
148
- #if (__cplusplus < 201304) // There's no SD6 check for this....
149
- # define BOOST_NO_CXX14_DIGIT_SEPARATORS
150
- #endif
151
- #if !defined(__cpp_generic_lambdas) || (__cpp_generic_lambdas < 201304)
152
- # define BOOST_NO_CXX14_GENERIC_LAMBDAS
153
- #endif
154
- #if !defined(__cpp_init_captures) || (__cpp_init_captures < 201304)
155
- # define BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
156
- #endif
157
- #if !defined(__cpp_return_type_deduction) || (__cpp_return_type_deduction < 201304)
158
- # define BOOST_NO_CXX14_RETURN_TYPE_DEDUCTION
159
- #endif
160
- #if !defined(__cpp_variable_templates) || (__cpp_variable_templates < 201304)
161
- # define BOOST_NO_CXX14_VARIABLE_TEMPLATES
162
- #endif
163
-
164
- // C++17
165
- #if !defined(__cpp_structured_bindings) || (__cpp_structured_bindings < 201606)
166
- # define BOOST_NO_CXX17_STRUCTURED_BINDINGS
167
- #endif
168
- #if !defined(__cpp_inline_variables) || (__cpp_inline_variables < 201606)
169
- # define BOOST_NO_CXX17_INLINE_VARIABLES
170
- #endif
171
- #if !defined(__cpp_fold_expressions) || (__cpp_fold_expressions < 201603)
172
- # define BOOST_NO_CXX17_FOLD_EXPRESSIONS
173
- #endif
174
-
175
- #if !defined(__cpp_if_constexpr) || (__cpp_if_constexpr < 201606)
176
- # define BOOST_NO_CXX17_IF_CONSTEXPR
177
- #endif
178
-
179
- #ifdef c_plusplus
180
- // EDG has "long long" in non-strict mode
181
- // However, some libraries have insufficient "long long" support
182
- // #define BOOST_HAS_LONG_LONG
183
- #endif