We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d7bc5 commit 7c55297Copy full SHA for 7c55297
CHANGELOG.md
@@ -20,6 +20,7 @@
20
- Move assignment of file IO span origin outside of block (#4888)
21
- Deadline timeout crash in SentryTracer (#4911)
22
- Improve memory-safety by converting Swift constants to Objective-C (#4910)
23
+- Fix C++ compilation error due to changes in Xcode 16.3 beta's compiler toolchain (#4917 and #4918)
24
25
## 8.45.0
26
Sources/Sentry/include/SentryThreadMetadataCache.hpp
@@ -44,7 +44,7 @@ namespace profiling {
44
ThreadHandle::NativeHandle handle;
45
ThreadMetadata metadata;
46
};
47
- std::vector<const ThreadHandleMetadataPair> threadMetadataCache_;
+ std::vector<ThreadHandleMetadataPair> threadMetadataCache_;
48
49
50
} // namespace profiling
0 commit comments