Formatting fix in demangler. NFC.

Swift SVN r14405
This commit is contained in:
Mark Lacey
2014-02-26 21:13:19 +00:00
parent ab1efa6ec7
commit 3d890ae562

View File

@@ -467,13 +467,13 @@ private:
appendNode(Node::Kind::Metaclass)->addChild(type);
return true;
}
if (Mangled.nextIf('n')) {
if (Mangled.nextIf('n')) {
NodePointer type = demangleType();
if (!type)
return failure();
return failure();
appendNode(Node::Kind::NominalTypeDescriptor)->addChild(type);
return true;
}
}
Directness d = demangleDirectness();
appendNode(Node::Kind::Directness, toString(d));
NodePointer type = demangleType();