pointfreeco / swift-custom-dump

A collection of tools for debugging, diffing, and testing your application's data structures.
MIT License
800 stars 89 forks source link

Allows CustomDump to build on visionOS/xrOS #93

Closed rhysm94 closed 1 year ago

rhysm94 commented 1 year ago

Currently, CustomDump cannot build for visionOS/xrOS, due to CLProximity and CLRegionState being marked unavailable on xrOS. I've added the @available(xrOS, unavailable) attribute to these types to fix that.

stephencelis commented 1 year ago

Thanks! Going to merge this but there's a little more work to do.