[dsymutil] Rename a variable to appease some bots.

Anyway having the type and the name of the member being the same
thing wasn't the wisest of the choices.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239190 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Frederic Riss 2015-06-05 21:21:57 +00:00
parent dfbf8971ca
commit 7bef4c48d6

View File

@ -91,7 +91,7 @@ void DebugMap::dump() const { print(errs()); }
namespace {
struct YAMLContext {
StringRef PrependPath;
Triple Triple;
Triple BinaryTriple;
};
}
@ -176,7 +176,7 @@ void MappingTraits<dsymutil::DebugMap>::mapping(IO &io,
io.mapRequired("triple", DM.BinaryTriple);
io.mapOptional("objects", DM.Objects);
if (void *Ctxt = io.getContext())
reinterpret_cast<YAMLContext *>(Ctxt)->Triple = DM.BinaryTriple;
reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM.BinaryTriple;
}
void MappingTraits<std::unique_ptr<dsymutil::DebugMap>>::mapping(
@ -186,7 +186,7 @@ void MappingTraits<std::unique_ptr<dsymutil::DebugMap>>::mapping(
io.mapRequired("triple", DM->BinaryTriple);
io.mapOptional("objects", DM->Objects);
if (void *Ctxt = io.getContext())
reinterpret_cast<YAMLContext *>(Ctxt)->Triple = DM->BinaryTriple;
reinterpret_cast<YAMLContext *>(Ctxt)->BinaryTriple = DM->BinaryTriple;
}
MappingTraits<dsymutil::DebugMapObject>::YamlDMO::YamlDMO(