mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Formatting fix in demangler. NFC.
Swift SVN r14405
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user