Skip to content

Commit 8007ca5

Browse files
committed
Update defines.rb
1 parent 4bfe007 commit 8007ca5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/cocoapods_mangle/defines.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ def self.swift_symbol?(symbol)
125125
# Internal Swift symbols starting with __swift or ___swift such as should not be mangled
126126
# e.g. '00000000000050ac S ___swift_reflection_version'
127127
symbol[/ __(_)?swift/] ||
128+
# Internal Swift symbols starting with Swift such as should not be mangled
129+
# e.g. 'Swift51Override'
130+
symbol[/Swift/] ||
128131
# Swift symbols starting with symbolic should be ignored
129132
# e.g. '0000000000000248 S symbolic _____ 9ManglePod9SomeClassC'
130133
symbol[/symbolic /] ||

0 commit comments

Comments
 (0)