diff options
Diffstat (limited to 'lib/TextAPI/MachO/TextStubCommon.h')
-rw-r--r-- | lib/TextAPI/MachO/TextStubCommon.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/TextAPI/MachO/TextStubCommon.h b/lib/TextAPI/MachO/TextStubCommon.h index c4dd1075b1c8..a558cbcec9fb 100644 --- a/lib/TextAPI/MachO/TextStubCommon.h +++ b/lib/TextAPI/MachO/TextStubCommon.h @@ -21,7 +21,7 @@ #include "llvm/TextAPI/MachO/InterfaceFile.h" #include "llvm/TextAPI/MachO/PackedVersion.h" -using UUID = std::pair<llvm::MachO::Architecture, std::string>; +using UUID = std::pair<llvm::MachO::Target, std::string>; LLVM_YAML_STRONG_TYPEDEF(llvm::StringRef, FlowStringRef) LLVM_YAML_STRONG_TYPEDEF(uint8_t, SwiftVersion) @@ -41,9 +41,9 @@ template <> struct ScalarEnumerationTraits<MachO::ObjCConstraintType> { static void enumeration(IO &, MachO::ObjCConstraintType &); }; -template <> struct ScalarTraits<MachO::PlatformKind> { - static void output(const MachO::PlatformKind &, void *, raw_ostream &); - static StringRef input(StringRef, void *, MachO::PlatformKind &); +template <> struct ScalarTraits<MachO::PlatformSet> { + static void output(const MachO::PlatformSet &, void *, raw_ostream &); + static StringRef input(StringRef, void *, MachO::PlatformSet &); static QuotingType mustQuote(StringRef); }; |