[Lldb-commits] [lldb] r251083 - Fixed a typo in r251080.

Sean Callanan via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 22 17:37:55 PDT 2015


Author: spyffe
Date: Thu Oct 22 19:37:54 2015
New Revision: 251083

URL: http://llvm.org/viewvc/llvm-project?rev=251083&view=rev
Log:
Fixed a typo in r251080.

Modified:
    lldb/trunk/source/API/SBTypeSummary.cpp

Modified: lldb/trunk/source/API/SBTypeSummary.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBTypeSummary.cpp?rev=251083&r1=251082&r2=251083&view=diff
==============================================================================
--- lldb/trunk/source/API/SBTypeSummary.cpp (original)
+++ lldb/trunk/source/API/SBTypeSummary.cpp Thu Oct 22 19:37:54 2015
@@ -153,7 +153,7 @@ SBTypeSummary::CreateWithCallback (Forma
                TypeSummaryImplSP(
                    cb ? new CXXFunctionSummaryFormat(options,
                        [cb] (ValueObject& valobj, Stream& stm, const TypeSummaryOptions& opt) -> bool {
-                            BStream stream;
+                            SBStream stream;
                             if (!cb(SBValue(valobj.GetSP()), SBTypeSummaryOptions(&opt), stream))
                                 return false;
                             stm.Write(stream.GetData(), stream.GetSize());




More information about the lldb-commits mailing list