@@ -2660,7 +2660,7 @@ struct TargetContextDescriptor {
26602660
26612661using ContextDescriptor = TargetContextDescriptor<InProcess>;
26622662
2663- inline bool isCImportedModuleName (StringRef name) {
2663+ inline bool isCImportedModuleName (llvm:: StringRef name) {
26642664 // This does not include MANGLING_MODULE_CLANG_IMPORTER because that's
26652665 // used only for synthesized declarations and not actual imported
26662666 // declarations.
@@ -2757,7 +2757,7 @@ class TargetGenericRequirementDescriptor {
27572757
27582758 // / Retrieve the generic parameter that is the subject of this requirement,
27592759 // / as a mangled type name.
2760- StringRef getParam () const {
2760+ llvm:: StringRef getParam () const {
27612761 return swift::Demangle::makeSymbolicMangledNameStringRef (Param.get ());
27622762 }
27632763
@@ -2768,7 +2768,7 @@ class TargetGenericRequirementDescriptor {
27682768 }
27692769
27702770 // / Retrieve the right-hand type for a SameType or BaseClass requirement.
2771- StringRef getMangledTypeName () const {
2771+ llvm:: StringRef getMangledTypeName () const {
27722772 assert (getKind () == GenericRequirementKind::SameType ||
27732773 getKind () == GenericRequirementKind::BaseClass);
27742774 return swift::Demangle::makeSymbolicMangledNameStringRef (Type.get ());
@@ -2999,7 +2999,7 @@ struct TargetExtensionContextDescriptor final
29992999
30003000 using TrailingGenericContextObjects::getGenericContext;
30013001
3002- StringRef getMangledExtendedContext () const {
3002+ llvm:: StringRef getMangledExtendedContext () const {
30033003 return Demangle::makeSymbolicMangledNameStringRef (ExtendedContext.get ());
30043004 }
30053005
@@ -3223,13 +3223,13 @@ struct TargetOpaqueTypeDescriptor final
32233223 return (this
32243224 ->template getTrailingObjects <RelativeDirectPointer<const char >>())[i];
32253225 }
3226-
3227- StringRef getUnderlyingTypeArgument (unsigned i) const {
3226+
3227+ llvm:: StringRef getUnderlyingTypeArgument (unsigned i) const {
32283228 assert (i < getNumUnderlyingTypeArguments ());
32293229 const char *ptr = getUnderlyingTypeArgumentMangledName (i);
32303230 return Demangle::makeSymbolicMangledNameStringRef (ptr);
32313231 }
3232-
3232+
32333233 static bool classof (const TargetContextDescriptor<Runtime> *cd) {
32343234 return cd->getKind () == ContextDescriptorKind::OpaqueType;
32353235 }
0 commit comments