Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions stdlib/public/SwiftShims/swift/shims/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ set(sources
Visibility.h
_SwiftConcurrency.h
_SwiftDistributed.h

_SwiftRuntimeShims/Functions.h
_SwiftRuntime.h

module.modulemap
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
//
//===----------------------------------------------------------------------===//

#ifndef SWIFT_REFLECTION_FUNCTIONS_H
#define SWIFT_REFLECTION_FUNCTIONS_H
#ifndef SWIFT_REFLECTION_RUNTIME_H
#define SWIFT_REFLECTION_RUNTIME_H

// OpaqueValue *swift_projectBox(HeapObject *object);
extern void *swift_projectBox(void *object);
Expand All @@ -19,4 +19,4 @@ extern void *swift_projectBox(void *object);
// ProtocolDescriptor *protocol);
extern void *swift_conformsToProtocol(const void *type, const void *protocol);

#endif /* SWIFT_REFLECTION_FUNCTIONS_H */
#endif /* SWIFT_REFLECTION_RUNTIME_H */
2 changes: 1 addition & 1 deletion stdlib/public/SwiftShims/swift/shims/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ module SwiftOverlayShims {
}

module _SwiftRuntimeShims {
header "_SwiftRuntimeShims/Functions.h"
header "_SwiftRuntime.h"
export *
}