Skip to content

Commit 1e9641a

Browse files
committed
SwiftDemangle: fix exports macro
Correct the case on the macro. The warning for the mismatch was lost in the copious warnings during the Windows build.
1 parent 2380950 commit 1e9641a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/SwiftDemangle/Platform.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
extern "C" {
1818
#endif
1919

20-
#if defined(SwiftDemangle_EXPORTS)
20+
#if defined(swiftDemangle_EXPORTS)
2121
# if defined(__ELF__)
2222
# define SWIFT_DEMANGLE_LINKAGE __attribute__((__visibility__("protected")))
2323
# elif defined(__MACH__)

0 commit comments

Comments
 (0)