Skip to content

Commit d645a1a

Browse files
author
Tom Birch
committed
[stdlib] Fix type of _swift_stdlib_HashingDetail_fixedSeedOverride
GlobalObjects.h declares it as __swift_uint64_t, but GlobalObjects.cpp declared it as uint64_t. The types should match exactly.
1 parent 013aad1 commit d645a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/stubs/GlobalObjects.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ extern "C" _SwiftEmptyArrayStorage _swiftEmptyArrayStorage = {
4040

4141
SWIFT_RUNTIME_STDLIB_INTERFACE
4242
extern "C"
43-
uint64_t _swift_stdlib_HashingDetail_fixedSeedOverride = 0;
43+
__swift_uint64_t _swift_stdlib_HashingDetail_fixedSeedOverride = 0;
4444

4545
}
4646

0 commit comments

Comments
 (0)