@@ -26,7 +26,7 @@ namespace swift {
2626// / Describes a "suppressible" protocol, such as Copyable, which is assumed to
2727// / hold for all types unless explicitly suppressed.
2828enum class SuppressibleProtocolKind : uint8_t {
29- #define SUPPRESSIBLE_PROTOCOL (Name, Bit, MangleChar ) Name = Bit,
29+ #define SUPPRESSIBLE_PROTOCOL (Name, Bit ) Name = Bit,
3030#include " swift/ABI/SuppressibleProtocols.def"
3131};
3232
@@ -72,7 +72,7 @@ class SuppressibleProtocolSet {
7272 // / Clear out all of the protocols from the set.
7373 void clear () { bits = 0 ; }
7474
75- #define SUPPRESSIBLE_PROTOCOL (Name, Bit, MangleChar ) \
75+ #define SUPPRESSIBLE_PROTOCOL (Name, Bit ) \
7676 bool contains##Name() const { \
7777 return contains (SuppressibleProtocolKind::Name); \
7878 }
@@ -82,7 +82,7 @@ class SuppressibleProtocolSet {
8282 // / protocols.
8383 static SuppressibleProtocolSet allKnown () {
8484 SuppressibleProtocolSet result;
85- #define SUPPRESSIBLE_PROTOCOL (Name, Bit, MangleChar ) \
85+ #define SUPPRESSIBLE_PROTOCOL (Name, Bit ) \
8686 result.insert (SuppressibleProtocolKind::Name);
8787#include " swift/ABI/SuppressibleProtocols.def"
8888 return result;
@@ -213,7 +213,7 @@ class SuppressibleProtocolSet {
213213static inline const char *
214214getSuppressibleProtocolKindName (SuppressibleProtocolKind kind) {
215215 switch (kind) {
216- #define SUPPRESSIBLE_PROTOCOL (Name, Bit, MangleChar ) \
216+ #define SUPPRESSIBLE_PROTOCOL (Name, Bit ) \
217217 case SuppressibleProtocolKind::Name: return #Name;
218218#include " swift/ABI/SuppressibleProtocols.def"
219219 }
0 commit comments