Skip to content

Commit 0e86b6f

Browse files
authored
Merge pull request #41213 from apple/compnerd/reflection-sizes
Reflection: adjust type definitions for `ConcurrentHashMap`
2 parents dffaa9b + 3a6e170 commit 0e86b6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/swift/Reflection/RuntimeInternals.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ template <typename Runtime> struct MetadataCacheNode {
4949
};
5050

5151
template <typename Runtime> struct ConcurrentHashMap {
52-
typename Runtime::StoredSize ReaderCount;
53-
typename Runtime::StoredSize ElementCount;
52+
uint32_t ReaderCount;
53+
uint32_t ElementCount;
5454
typename Runtime::StoredPointer Elements;
5555
typename Runtime::StoredPointer Indices;
5656
// We'll ignore the remaining fields for now....

0 commit comments

Comments
 (0)