[Lldb-commits] [lldb] r203656 - Fix friendship declaration to match actual class declaration.

Arnaud A. de Grandmaison arnaud.adegm at gmail.com
Wed Mar 12 04:49:05 PDT 2014


Author: aadg
Date: Wed Mar 12 06:49:05 2014
New Revision: 203656

URL: http://llvm.org/viewvc/llvm-project?rev=203656&view=rev
Log:
Fix friendship declaration to match actual class declaration.

This is a compilation warning fix. No functional change.

Modified:
    lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h

Modified: lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h?rev=203656&r1=203655&r2=203656&view=diff
==============================================================================
--- lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h (original)
+++ lldb/trunk/include/lldb/DataFormatters/ValueObjectPrinter.h Wed Mar 12 06:49:05 2014
@@ -386,7 +386,7 @@ private:
     std::string m_summary;
     std::string m_error;
     
-    friend class StringSummaryFormat;
+    friend struct StringSummaryFormat;
     
     DISALLOW_COPY_AND_ASSIGN(ValueObjectPrinter);
 };





More information about the lldb-commits mailing list