You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running Analyze on Xcode Cloud we get
file:///Volumes/workspace/DerivedData/SourcePackages/checkouts/dd-sdk-ios/Sources/_Datadog_Private/ObjcAppLaunchHandler.m:44
Value stored to 'token' during its initialization is never read.
This prevents our analyze checks from passing.
Datadog SDK version:
1.16
Last working Datadog SDK version:
N/A
Dependency Manager:
SPM
Other toolset:
N/A
Xcode version:
Xcode 14.2
Swift version:
5.7
Deployment Target:
iOS 15+
macOS version:
13.2.1
The text was updated successfully, but these errors were encountered:
This token is there for retaining the observer until completion.
We could add a pragma to silence this warning #pragma unused(token) in our code, but in the meantime you can set the GCC_WARN_UNUSED_VARIABLE flag to NO in your build config.
The issue
When running Analyze on Xcode Cloud we get
file:///Volumes/workspace/DerivedData/SourcePackages/checkouts/dd-sdk-ios/Sources/_Datadog_Private/ObjcAppLaunchHandler.m:44
Value stored to 'token' during its initialization is never read.
This prevents our analyze checks from passing.
Datadog SDK version:
1.16
Last working Datadog SDK version:
N/A
Dependency Manager:
SPM
Other toolset:
N/A
Xcode version:
Xcode 14.2
Swift version:
5.7
Deployment Target:
iOS 15+
macOS version:
13.2.1
The text was updated successfully, but these errors were encountered: