Skip to content

Commit 7c55297

Browse files
authored
fix: dont use unsupported const vector member type (#4918)
1 parent 15d7bc5 commit 7c55297

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- Move assignment of file IO span origin outside of block (#4888)
2121
- Deadline timeout crash in SentryTracer (#4911)
2222
- 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)
2324

2425
## 8.45.0
2526

Sources/Sentry/include/SentryThreadMetadataCache.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace profiling {
4444
ThreadHandle::NativeHandle handle;
4545
ThreadMetadata metadata;
4646
};
47-
std::vector<const ThreadHandleMetadataPair> threadMetadataCache_;
47+
std::vector<ThreadHandleMetadataPair> threadMetadataCache_;
4848
};
4949

5050
} // namespace profiling

0 commit comments

Comments
 (0)