Build Information
Successful build of Cadova, reference 0.1.5 (77a3cb
), with Swift 6.2 (beta) for macOS (SPM) on 2 Sep 2025 15:35:42 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[374/413] Compiling Cadova Translate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[375/413] Compiling Cadova VariableScale.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[376/413] Compiling Cadova Twist.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[377/413] Compiling Cadova Warp.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[378/413] Compiling Cadova WhileMasked.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[379/413] Compiling Cadova Within.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[380/413] Compiling Cadova Wrap.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[381/413] Compiling Cadova ArrayBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[382/413] Compiling Cadova Compatibility.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[383/413] Compiling Cadova ConcreteGeometry.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[384/413] Compiling Cadova BinarySTLDataProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[385/413] Compiling Cadova OutputDataProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[386/413] Compiling Cadova SVGDataProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[387/413] Compiling Cadova ThreeMFDataProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[388/413] Compiling Cadova PartIdentifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[389/413] Compiling Cadova PolygonTree.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[390/413] Compiling Cadova Model.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[391/413] Compiling Cadova Compression.swift
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Measure.swift:47:100: warning: capture of non-sendable type 'Output.Type' in an isolated closure
45 | func measuringBounds<Output: Dimensionality>(
46 | @GeometryBuilder<Output> _ builder: @Sendable @escaping (D.Geometry, D.BoundingBox) -> Output.Geometry,
47 | @GeometryBuilder<Output> empty emptyBuilder: @Sendable @escaping () -> Output.Geometry = { Empty() },
| `- warning: capture of non-sendable type 'Output.Type' in an isolated closure
48 | ) -> Output.Geometry {
49 | measuring { geometry, measurements in
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Abstract Layer/Operations/Transformations/Transformed.swift:9:14: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
7 | func transformed(_ transform: D.Transform) -> D.Geometry {
8 | GeometryNodeTransformer(body: self) {
9 | .transform($0, transform: transform)
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
10 | } environment: {
11 | $0.applyingTransform(transform.transform3D)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:113:19: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
111 | func save(to path: String) {
112 | waitForTask {
113 | await Model(path) {
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
114 | self
115 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Compatibility.swift:114:17: warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
112 | waitForTask {
113 | await Model(path) {
114 | self
| `- warning: capture of non-sendable type 'Self.D.Type' in an isolated closure
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:74:17: warning: capture of non-sendable type 'D.Type' in an isolated closure
72 | let result: D.BuildResult
73 | do {
74 | result = try await ContinuousClock().measure {
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
75 | try await environment.whileCurrent {
76 | try await context.buildResult(for: content(), in: environment)
/Users/admin/builder/spi-builder-workspace/Sources/Cadova/Concrete Layer/Saving/Model.swift:46:29: warning: capture of non-sendable type 'D.Type' in an isolated closure
44 | _ name: String,
45 | options: ModelOptions...,
46 | @GeometryBuilder<D> content: @Sendable @escaping () -> D.Geometry,
| `- warning: capture of non-sendable type 'D.Type' in an isolated closure
47 | environment environmentBuilder: ((inout EnvironmentValues) -> Void)? = nil
48 | ) async {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/manifold-swift/External/manifold/include/manifold/manifold.h:499:3: note: function 'GetCsgLeafNode' unavailable (cannot import)
497 | mutable std::shared_ptr<CsgNode> pNode_;
498 |
499 | CsgLeafNode& GetCsgLeafNode() const;
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| |- note: return type unavailable (cannot import)
| |- note: function 'GetCsgLeafNode' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
500 | };
501 | /** @} */
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__exception/exception_ptr.h:72:3: note: function 'exception_ptr' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI exception_ptr() _NOEXCEPT : __ptr_() {}
72 | _LIBCPP_HIDE_FROM_ABI exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'exception_ptr' unavailable (cannot import)
73 |
74 | exception_ptr(const exception_ptr&) _NOEXCEPT;
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_code.h:49:3: note: function 'error_code' unavailable (cannot import)
47 | _LIBCPP_HIDE_FROM_ABI error_code() _NOEXCEPT : __val_(0), __cat_(&system_category()) {}
48 |
49 | _LIBCPP_HIDE_FROM_ABI error_code(int __val, const error_category& __cat) _NOEXCEPT : __val_(__val), __cat_(&__cat) {}
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_code' unavailable (cannot import)
50 |
51 | template <class _Ep, __enable_if_t<is_error_code_enum<_Ep>::value, int> = 0>
:
55 | }
56 |
57 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
58 | __val_ = __val;
59 | __cat_ = &__cat;
:
74 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
75 |
76 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
77 |
78 | _LIBCPP_HIDE_FROM_ABI error_condition default_error_condition() const _NOEXCEPT {
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__system_error/error_condition.h:56:3: note: function 'error_condition' unavailable (cannot import)
54 | _LIBCPP_HIDE_FROM_ABI error_condition() _NOEXCEPT : __val_(0), __cat_(&generic_category()) {}
55 |
56 | _LIBCPP_HIDE_FROM_ABI error_condition(int __val, const error_category& __cat) _NOEXCEPT
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'error_condition' unavailable (cannot import)
57 | : __val_(__val),
58 | __cat_(&__cat) {}
:
64 | }
65 |
66 | _LIBCPP_HIDE_FROM_ABI void assign(int __val, const error_category& __cat) _NOEXCEPT {
| | `- note: parameter '__cat' unavailable (cannot import)
| `- note: function 'assign' unavailable (cannot import)
67 | __val_ = __val;
68 | __cat_ = &__cat;
:
83 | _LIBCPP_HIDE_FROM_ABI int value() const _NOEXCEPT { return __val_; }
84 |
85 | _LIBCPP_HIDE_FROM_ABI const error_category& category() const _NOEXCEPT { return *__cat_; }
| |- note: function 'category' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
86 | string message() const;
87 |
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__locale:112:3: note: function 'has_facet' unavailable (cannot import)
110 | void __install_ctor(const locale&, facet*, long);
111 | static locale& __global();
112 | bool has_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'has_facet' unavailable (cannot import)
113 | const facet* use_facet(id&) const;
| | `- note: parameter '' unavailable (cannot import)
| `- note: function 'use_facet' unavailable (cannot import)
114 |
115 | template <class _Facet>
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/typeindex:69:3: note: function 'type_index' unavailable (cannot import)
67 |
68 | public:
69 | _LIBCPP_HIDE_FROM_ABI type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
| | `- note: parameter '__y' unavailable (cannot import)
| `- note: function 'type_index' unavailable (cannot import)
70 |
71 | _LIBCPP_HIDE_FROM_ABI bool operator==(const type_index& __y) const _NOEXCEPT { return *__t_ == *__y.__t_; }
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/directory_iterator.h:86:3: note: function 'operator++' unavailable (cannot import)
84 | _LIBCPP_HIDE_FROM_ABI directory_iterator& operator++() { return __increment(); }
85 |
86 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
87 | __dir_element_proxy __p(**this);
88 | __increment();
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/usr/include/c++/v1/__filesystem/recursive_directory_iterator.h:82:3: note: function 'operator++' unavailable (cannot import)
80 | _LIBCPP_HIDE_FROM_ABI recursive_directory_iterator& operator++() { return __increment(); }
81 |
82 | _LIBCPP_HIDE_FROM_ABI __dir_element_proxy operator++(int) {
| |- note: function 'operator++' unavailable (cannot import)
| `- note: return type unavailable (cannot import)
83 | __dir_element_proxy __p(**this);
84 | __increment();
[392/413] Compiling Cadova SimplePolygonList.swift
[393/413] Compiling Cadova Direction.swift
[394/413] Compiling Cadova Line.swift
[395/413] Compiling Cadova LinearDirection.swift
[396/413] Compiling Cadova Plane+Transformation.swift
[397/413] Compiling Cadova Plane.swift
[398/413] Compiling Cadova BasicMatrix3x3.swift
[399/413] Compiling Cadova Transform2D+Creation.swift
[400/413] Compiling Cadova Transform2D+Modification.swift
[401/413] Compiling Cadova Transform2D.swift
[402/413] Compiling Cadova BasicMatrix4x4.swift
[403/413] Compiling Cadova Transform3D+Creation.swift
[404/413] Compiling Cadova Transform3D+Modification.swift
[405/413] Compiling Cadova Transform3D.swift
[406/413] Compiling Cadova Matrix.swift
[407/413] Compiling Cadova Transform.swift
[408/413] Compiling Cadova DimensionalValues.swift
[409/413] Compiling Cadova Vector.swift
[410/413] Compiling Cadova Vector2D+Operators.swift
[411/413] Compiling Cadova Vector2D.swift
[412/413] Compiling Cadova Vector3D+Operators.swift
[413/413] Compiling Cadova Vector3D.swift
Build complete! (58.48s)
Fetching https://github.com/tomasf/FindFont.git
Fetching https://github.com/tomasf/ThreeMF.git
Fetching https://github.com/tomasf/manifold-swift.git
Fetching https://github.com/tomasf/freetype-spm.git
Fetching https://github.com/apple/swift-log.git
[1/9] Fetching freetype-spm
[6/3912] Fetching freetype-spm, swift-log
[85/4044] Fetching freetype-spm, swift-log, findfont
Fetched https://github.com/tomasf/freetype-spm.git from cache (0.67s)
[328/4035] Fetching swift-log, findfont
[329/4592] Fetching swift-log, findfont, manifold-swift
[742/5054] Fetching swift-log, findfont, manifold-swift, threemf
Fetched https://github.com/apple/swift-log.git from cache (1.58s)
Fetched https://github.com/tomasf/ThreeMF.git from cache (1.58s)
Fetched https://github.com/tomasf/manifold-swift.git from cache (1.58s)
Fetched https://github.com/tomasf/FindFont.git from cache (1.58s)
Computing version for https://github.com/tomasf/FindFont.git
Computed https://github.com/tomasf/FindFont.git at 1.0.0 (2.04s)
Computing version for https://github.com/tomasf/freetype-spm.git
Computed https://github.com/tomasf/freetype-spm.git at 1.0.1 (0.44s)
Computing version for https://github.com/tomasf/ThreeMF.git
Computed https://github.com/tomasf/ThreeMF.git at 0.1.0 (0.42s)
Fetching https://github.com/tomasf/Nodal.git
Fetching https://github.com/tomasf/Zip.git
[1/186] Fetching zip
[173/846] Fetching zip, nodal
Fetched https://github.com/tomasf/Nodal.git from cache (1.76s)
Fetched https://github.com/tomasf/Zip.git from cache (1.76s)
Computing version for https://github.com/tomasf/manifold-swift.git
Computed https://github.com/tomasf/manifold-swift.git at 0.2.3 (2.23s)
Computing version for https://github.com/tomasf/Nodal.git
Computed https://github.com/tomasf/Nodal.git at 0.3.1 (0.42s)
Computing version for https://github.com/tomasf/Zip.git
Computed https://github.com/tomasf/Zip.git at 2.1.0 (0.42s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.4 (0.50s)
Creating working copy for https://github.com/tomasf/Nodal.git
Working copy of https://github.com/tomasf/Nodal.git resolved at 0.3.1
Creating working copy for https://github.com/tomasf/Zip.git
Working copy of https://github.com/tomasf/Zip.git resolved at 2.1.0
Creating working copy for https://github.com/tomasf/FindFont.git
Working copy of https://github.com/tomasf/FindFont.git resolved at 1.0.0
Creating working copy for https://github.com/tomasf/manifold-swift.git
Working copy of https://github.com/tomasf/manifold-swift.git resolved at 0.2.3
Creating working copy for https://github.com/tomasf/ThreeMF.git
Working copy of https://github.com/tomasf/ThreeMF.git resolved at 0.1.0
Creating working copy for https://github.com/tomasf/freetype-spm.git
Working copy of https://github.com/tomasf/freetype-spm.git resolved at 1.0.1
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.4
Build complete.
{
"cxx_language_standard" : "c++17",
"dependencies" : [
{
"identity" : "manifold-swift",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.3",
"upper_bound" : "0.3.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tomasf/manifold-swift.git"
},
{
"identity" : "threemf",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.0",
"upper_bound" : "0.2.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tomasf/ThreeMF.git"
},
{
"identity" : "freetype-spm",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tomasf/freetype-spm.git"
},
{
"identity" : "findfont",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tomasf/FindFont.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "Cadova",
"name" : "Cadova",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "14.0"
}
],
"products" : [
{
"name" : "Cadova",
"targets" : [
"Cadova"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Tests",
"module_type" : "SwiftTarget",
"name" : "Tests",
"path" : "Tests/Tests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/Tests/golden",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/Tests/resources",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"2D.swift",
"3D.swift",
"BezierCurve.swift",
"BezierPatch.swift",
"BezierPath.swift",
"BezierPathBuilder.swift",
"Bounds.swift",
"Cache.swift",
"CircularOverhang.swift",
"Common/ApproximatelyEquatable.swift",
"Common/ExpressionExtensions.swift",
"Common/GeometryExtensions.swift",
"Common/GoldenRecord.swift",
"Deform.swift",
"Examples.swift",
"GeometryExpressionCodable.swift",
"GeometryExpressionSimplification.swift",
"Import.swift",
"Line.swift",
"Loft.swift",
"Matrix.swift",
"NaturalUpDirection.swift",
"Operation.swift",
"Parts.swift",
"Result.swift",
"Split.swift",
"Stack.swift",
"Sweep.swift",
"Text.swift",
"Transform.swift",
"Wrap.swift"
],
"target_dependencies" : [
"Cadova"
],
"type" : "test"
},
{
"c99name" : "CadovaCPP",
"module_type" : "ClangTarget",
"name" : "CadovaCPP",
"path" : "Sources/CadovaCPP",
"product_dependencies" : [
"Manifold"
],
"product_memberships" : [
"Cadova"
],
"sources" : [
"src/CadovaCPP.cpp"
],
"type" : "library"
},
{
"c99name" : "Cadova",
"module_type" : "SwiftTarget",
"name" : "Cadova",
"path" : "Sources/Cadova",
"product_dependencies" : [
"freetype",
"FindFont",
"Manifold",
"ThreeMF",
"Logging"
],
"product_memberships" : [
"Cadova"
],
"sources" : [
"Abstract Layer/2D/Circle/Arc.swift",
"Abstract Layer/2D/Circle/Circle+Metrics.swift",
"Abstract Layer/2D/Circle/Circle.swift",
"Abstract Layer/2D/Circle/Ring.swift",
"Abstract Layer/2D/Metrics2D.swift",
"Abstract Layer/2D/Overhang/CylinderBridge.swift",
"Abstract Layer/2D/Overhang/OverhangCircle.swift",
"Abstract Layer/2D/Polygon/Polygon.Metrics.swift",
"Abstract Layer/2D/Polygon/Polygon.swift",
"Abstract Layer/2D/Polygon/PolygonPointsProvider.swift",
"Abstract Layer/2D/Rectangle.swift",
"Abstract Layer/2D/RegularPolygon.swift",
"Abstract Layer/2D/Text/GlyphRenderer.swift",
"Abstract Layer/2D/Text/Text.swift",
"Abstract Layer/2D/Text/TextAttributes.swift",
"Abstract Layer/2D/Text/TextRendering.swift",
"Abstract Layer/3D/Box.swift",
"Abstract Layer/3D/Cylinder+Angles.swift",
"Abstract Layer/3D/Cylinder.swift",
"Abstract Layer/3D/Import.swift",
"Abstract Layer/3D/Mesh+Debug.swift",
"Abstract Layer/3D/Mesh.swift",
"Abstract Layer/3D/SDF.swift",
"Abstract Layer/3D/Sphere.swift",
"Abstract Layer/3D/Torus.swift",
"Abstract Layer/3D/Tube.swift",
"Abstract Layer/Development/VisualizeAxes.swift",
"Abstract Layer/Environment/Environment.swift",
"Abstract Layer/Environment/EnvironmentModifier.swift",
"Abstract Layer/Environment/EnvironmentValues.swift",
"Abstract Layer/Environment/ReadEnvironment.swift",
"Abstract Layer/Environment/Values/CircularOverhangMethod.swift",
"Abstract Layer/Environment/Values/Environment+CornerRoundingStyle.swift",
"Abstract Layer/Environment/Values/Environment+Material.swift",
"Abstract Layer/Environment/Values/Environment+ModelOptions.swift",
"Abstract Layer/Environment/Values/Environment+Segmentation.swift",
"Abstract Layer/Environment/Values/Environment+Text.swift",
"Abstract Layer/Environment/Values/Environment+Transform.swift",
"Abstract Layer/Environment/Values/FillRule.swift",
"Abstract Layer/Environment/Values/MiterLimit.swift",
"Abstract Layer/Environment/Values/NaturalUpDirection.swift",
"Abstract Layer/Environment/Values/Operation.swift",
"Abstract Layer/Environment/Values/Overhang.swift",
"Abstract Layer/Environment/Values/SimplificationThreshold.swift",
"Abstract Layer/Environment/Values/Tolerance.swift",
"Abstract Layer/Environment/Values/TwistRate.swift",
"Abstract Layer/Environment/Values/TwistSubdivisionThreshold.swift",
"Abstract Layer/Geometry/Anchors/AnchorList.swift",
"Abstract Layer/Geometry/Anchors/Anchors+Public.swift",
"Abstract Layer/Geometry/Anchors/Geometry+Anchors.swift",
"Abstract Layer/Geometry/ApplyMaterial.swift",
"Abstract Layer/Geometry/BuildResult.swift",
"Abstract Layer/Geometry/CachingGeometryTypes.swift",
"Abstract Layer/Geometry/GeometryBaseTypes.swift",
"Abstract Layer/Geometry/GeometryBuilder.swift",
"Abstract Layer/Geometry/PartAssignment.swift",
"Abstract Layer/Geometry/Protocols/Geometry.swift",
"Abstract Layer/Geometry/Protocols/Shape.swift",
"Abstract Layer/Geometry/ResultElement/ResultElement.swift",
"Abstract Layer/Geometry/ResultElement/ResultModifier.swift",
"Abstract Layer/Geometry/ResultElement/ResultReader.swift",
"Abstract Layer/Operations/Aligned.swift",
"Abstract Layer/Operations/Attraction/Attract.swift",
"Abstract Layer/Operations/Attraction/AttractionTarget.swift",
"Abstract Layer/Operations/Attraction/Pull.swift",
"Abstract Layer/Operations/Boolean/AddingExclusive.swift",
"Abstract Layer/Operations/Boolean/Difference.swift",
"Abstract Layer/Operations/Boolean/Intersection.swift",
"Abstract Layer/Operations/Boolean/MapBoolean.swift",
"Abstract Layer/Operations/Boolean/Union.swift",
"Abstract Layer/Operations/Bounds/Resize2D.swift",
"Abstract Layer/Operations/Bounds/Resize3D.swift",
"Abstract Layer/Operations/DeformUsingPath.swift",
"Abstract Layer/Operations/Duplication/Clone.swift",
"Abstract Layer/Operations/Duplication/Distribute.swift",
"Abstract Layer/Operations/Duplication/RepeatAlong.swift",
"Abstract Layer/Operations/Duplication/RepeatAlongPath.swift",
"Abstract Layer/Operations/Duplication/RepeatAround.swift",
"Abstract Layer/Operations/Duplication/Symmetry.swift",
"Abstract Layer/Operations/Edge Profiling/ApplyBoxEdgeProfile.swift",
"Abstract Layer/Operations/Edge Profiling/ApplyEdgeProfileToCorners.swift",
"Abstract Layer/Operations/Edge Profiling/Masks/ProfiledRectangleMask.swift",
"Abstract Layer/Operations/Edge Profiling/Masks/RoundedBoxCornerMask.swift",
"Abstract Layer/Operations/Edge Profiling/RoundingBoxCorners.swift",
"Abstract Layer/Operations/Extrude/ExtrudeAlongTransforms.swift",
"Abstract Layer/Operations/Extrude/ExtrudeWithEdgeProfiles.swift",
"Abstract Layer/Operations/Extrude/Extrusion.swift",
"Abstract Layer/Operations/Extrude/HelixSweep.swift",
"Abstract Layer/Operations/Extrude/Sweep.swift",
"Abstract Layer/Operations/Filling/ConvexHull.swift",
"Abstract Layer/Operations/Filling/Fill.swift",
"Abstract Layer/Operations/Follow2D.swift",
"Abstract Layer/Operations/Follow3D.swift",
"Abstract Layer/Operations/Loft/Loft+Build.swift",
"Abstract Layer/Operations/Loft/Loft+Resampling.swift",
"Abstract Layer/Operations/Loft/Loft.swift",
"Abstract Layer/Operations/Measure.swift",
"Abstract Layer/Operations/Offsetting/Offset.swift",
"Abstract Layer/Operations/Offsetting/Rounding.swift",
"Abstract Layer/Operations/OverhangSafe.swift",
"Abstract Layer/Operations/Projection.swift",
"Abstract Layer/Operations/ReadConcrete.swift",
"Abstract Layer/Operations/ReadOutlines.swift",
"Abstract Layer/Operations/Replace.swift",
"Abstract Layer/Operations/Resolution.swift",
"Abstract Layer/Operations/Skew2D.swift",
"Abstract Layer/Operations/Skew3D.swift",
"Abstract Layer/Operations/Split.swift",
"Abstract Layer/Operations/SplitInto.swift",
"Abstract Layer/Operations/Stack.swift",
"Abstract Layer/Operations/Transformations/Rotate.swift",
"Abstract Layer/Operations/Transformations/RotateAround.swift",
"Abstract Layer/Operations/Transformations/Scale.swift",
"Abstract Layer/Operations/Transformations/Transformed.swift",
"Abstract Layer/Operations/Transformations/Translate.swift",
"Abstract Layer/Operations/Transformations/VariableScale.swift",
"Abstract Layer/Operations/Twist.swift",
"Abstract Layer/Operations/Warp.swift",
"Abstract Layer/Operations/WhileMasked.swift",
"Abstract Layer/Operations/Within.swift",
"Abstract Layer/Operations/Wrap.swift",
"ArrayBuilder.swift",
"Compatibility.swift",
"Concrete Layer/ConcreteGeometry.swift",
"Concrete Layer/Output Providers/BinarySTLDataProvider.swift",
"Concrete Layer/Output Providers/OutputDataProvider.swift",
"Concrete Layer/Output Providers/SVGDataProvider.swift",
"Concrete Layer/Output Providers/ThreeMFDataProvider.swift",
"Concrete Layer/PartIdentifier.swift",
"Concrete Layer/PolygonTree.swift",
"Concrete Layer/Saving/Model.swift",
"Concrete Layer/Saving/Options/Compression.swift",
"Concrete Layer/Saving/Options/FileFormats.swift",
"Concrete Layer/Saving/Options/IncludedPartSemantics.swift",
"Concrete Layer/Saving/Options/Metadata.swift",
"Concrete Layer/Saving/Options/ModelOptions.swift",
"Concrete Layer/Saving/OutputContext.swift",
"Concrete Layer/Saving/Project.swift",
"Dimensionality.swift",
"Extensions.swift",
"Logging.swift",
"Node Layer/Context/EvaluationContext.swift",
"Node Layer/Context/GeometryCache.swift",
"Node Layer/EvaluationResult.swift",
"Node Layer/GeometryNode+Codable.swift",
"Node Layer/GeometryNode+Creation.swift",
"Node Layer/GeometryNode+Debug.swift",
"Node Layer/GeometryNode+Hashable.swift",
"Node Layer/GeometryNode+Shapes.swift",
"Node Layer/GeometryNode.swift",
"Operators.swift",
"Platform.swift",
"Values/Alignment/AxisAlignment.swift",
"Values/Alignment/GeometryAlignment+Presets.swift",
"Values/Alignment/GeometryAlignment.swift",
"Values/Angle/Angle+Operators.swift",
"Values/Angle/Angle+Trigonometry.swift",
"Values/Angle/Angle.swift",
"Values/Axis/Axes.swift",
"Values/Axis/Axis.swift",
"Values/Bezier/BezierCurve.swift",
"Values/Bezier/BezierPatch+Deformation.swift",
"Values/Bezier/BezierPatch+Extrude.swift",
"Values/Bezier/BezierPatch.swift",
"Values/Bezier/BezierPath+Adding.swift",
"Values/Bezier/BezierPath+Frame.swift",
"Values/Bezier/BezierPath+Internal.swift",
"Values/Bezier/BezierPath+Operations.swift",
"Values/Bezier/BezierPath+Visualization.swift",
"Values/Bezier/BezierPath.swift",
"Values/Bezier/Path Builder/BezierPath.Builder.swift",
"Values/Bezier/Path Builder/ComponentFunctions.swift",
"Values/Bezier/Path Builder/PathBuilderValue.swift",
"Values/Bezier/Path Builder/PathBuilderVector.swift",
"Values/Boundary/BoundingBox+Visualization.swift",
"Values/Boundary/BoundingBox.swift",
"Values/CacheKey.swift",
"Values/Color/Color+Constants.swift",
"Values/Color/Color+HSB.swift",
"Values/Color/Color.swift",
"Values/Corners, Edges and Sides/Box.Corner.swift",
"Values/Corners, Edges and Sides/Box.Edge.swift",
"Values/Corners, Edges and Sides/CornerRoundingStyle.swift",
"Values/Corners, Edges and Sides/DirectionalAxis.swift",
"Values/Corners, Edges and Sides/OrthogonalCorner.swift",
"Values/Corners, Edges and Sides/Rectangle.Corner.swift",
"Values/Edge Profiles/EdgeProfile+Presets.swift",
"Values/Edge Profiles/EdgeProfile.swift",
"Values/LinearInterpolation.swift",
"Values/Material+Presets.swift",
"Values/Material.swift",
"Values/Measurements.swift",
"Values/MeshData.swift",
"Values/OpaqueKey.swift",
"Values/Segmentation.swift",
"Values/ShapingFunction+Internal.swift",
"Values/ShapingFunction.swift",
"Values/SimplePolygon.swift",
"Values/SimplePolygonList.swift",
"Values/Spatial/Direction.swift",
"Values/Spatial/Line.swift",
"Values/Spatial/LinearDirection.swift",
"Values/Spatial/Plane+Transformation.swift",
"Values/Spatial/Plane.swift",
"Values/Transforms/2D/BasicMatrix3x3.swift",
"Values/Transforms/2D/Transform2D+Creation.swift",
"Values/Transforms/2D/Transform2D+Modification.swift",
"Values/Transforms/2D/Transform2D.swift",
"Values/Transforms/3D/BasicMatrix4x4.swift",
"Values/Transforms/3D/Transform3D+Creation.swift",
"Values/Transforms/3D/Transform3D+Modification.swift",
"Values/Transforms/3D/Transform3D.swift",
"Values/Transforms/Matrix.swift",
"Values/Transforms/Transform.swift",
"Values/Vectors/DimensionalValues.swift",
"Values/Vectors/Vector.swift",
"Values/Vectors/Vector2D+Operators.swift",
"Values/Vectors/Vector2D.swift",
"Values/Vectors/Vector3D+Operators.swift",
"Values/Vectors/Vector3D.swift"
],
"target_dependencies" : [
"CadovaCPP"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.