mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 14:22:26 +00:00
[TextAPI] Remove redundant checking causing warnings. NFC.
- Minor coding format. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@372765 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2c032d2797
commit
e8f0d8d08d
@ -45,11 +45,11 @@ void ScalarTraits<PlatformSet>::output(const PlatformSet &Values, void *IO,
|
||||
raw_ostream &OS) {
|
||||
|
||||
const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO);
|
||||
assert((!Ctx || Ctx && Ctx->FileKind != FileType::Invalid) &&
|
||||
assert((!Ctx || Ctx->FileKind != FileType::Invalid) &&
|
||||
"File type is not set in context");
|
||||
|
||||
if ( Ctx && Ctx->FileKind == TBD_V3 && Values.count(PlatformKind::macOS) &&
|
||||
Values.count(PlatformKind::macCatalyst) ) {
|
||||
if (Ctx && Ctx->FileKind == TBD_V3 && Values.count(PlatformKind::macOS) &&
|
||||
Values.count(PlatformKind::macCatalyst)) {
|
||||
OS << "zippered";
|
||||
return;
|
||||
}
|
||||
@ -80,7 +80,7 @@ void ScalarTraits<PlatformSet>::output(const PlatformSet &Values, void *IO,
|
||||
StringRef ScalarTraits<PlatformSet>::input(StringRef Scalar, void *IO,
|
||||
PlatformSet &Values) {
|
||||
const auto *Ctx = reinterpret_cast<TextAPIContext *>(IO);
|
||||
assert((!Ctx || Ctx && Ctx->FileKind != FileType::Invalid) &&
|
||||
assert((!Ctx || Ctx->FileKind != FileType::Invalid) &&
|
||||
"File type is not set in context");
|
||||
|
||||
if (Scalar == "zippered") {
|
||||
|
Loading…
x
Reference in New Issue
Block a user