[llvm] c2f2c6b - Fix a few remaining mentions of demangle's OutputString

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 28 18:54:24 PDT 2021


Author: David Blaikie
Date: 2021-10-28T18:54:16-07:00
New Revision: c2f2c6b103bf6c481f937cbb5a44c721d416a3fe

URL: https://github.com/llvm/llvm-project/commit/c2f2c6b103bf6c481f937cbb5a44c721d416a3fe
DIFF: https://github.com/llvm/llvm-project/commit/c2f2c6b103bf6c481f937cbb5a44c721d416a3fe.diff

LOG: Fix a few remaining mentions of demangle's OutputString

It's now called OutputBuffer

Added: 
    

Modified: 
    llvm/include/llvm/Demangle/ItaniumDemangle.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Demangle/ItaniumDemangle.h b/llvm/include/llvm/Demangle/ItaniumDemangle.h
index fe71fad177909..86f5c992b63d1 100644
--- a/llvm/include/llvm/Demangle/ItaniumDemangle.h
+++ b/llvm/include/llvm/Demangle/ItaniumDemangle.h
@@ -310,7 +310,7 @@ class Node {
       printRight(OB);
   }
 
-  // Print the "left" side of this Node into OutputString.
+  // Print the "left" side of this Node into OutputBuffer.
   virtual void printLeft(OutputBuffer &) const = 0;
 
   // Print the "right". This distinction is necessary to represent C++ types
@@ -1210,7 +1210,7 @@ class TemplateParamPackDecl final : public Node {
 class ParameterPack final : public Node {
   NodeArray Data;
 
-  // Setup OutputString for a pack expansion unless we're already expanding one.
+  // Setup OutputBuffer for a pack expansion unless we're already expanding one.
   void initializePackExpansion(OutputBuffer &OB) const {
     if (OB.CurrentPackMax == std::numeric_limits<unsigned>::max()) {
       OB.CurrentPackMax = static_cast<unsigned>(Data.size());


        


More information about the llvm-commits mailing list