We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b0ba0 commit 215789dCopy full SHA for 215789d
llvm/lib/Demangle/ItaniumDemangle.cpp
@@ -412,12 +412,8 @@ bool ItaniumPartialDemangler::partialDemangle(const char *MangledName) {
412
return RootNode == nullptr;
413
}
414
415
-struct TrackingOutputBuffer : public OutputBuffer {
416
- using OutputBuffer::OutputBuffer;
417
-};
418
-
419
static char *printNode(const Node *RootNode, char *Buf, size_t *N) {
420
- TrackingOutputBuffer OB(Buf, N);
+ OutputBuffer OB(Buf, N);
421
RootNode->print(OB);
422
OB += '\0';
423
if (N != nullptr)
0 commit comments