[Lldb-commits] [lldb] r115543 - /lldb/trunk/include/lldb/API/SBSymbol.h
Jim Ingham
jingham at apple.com
Mon Oct 4 12:38:50 PDT 2010
Author: jingham
Date: Mon Oct 4 14:38:50 2010
New Revision: 115543
URL: http://llvm.org/viewvc/llvm-project?rev=115543&view=rev
Log:
Have to friend SBFrame or it can't make symbols for the frame.
Modified:
lldb/trunk/include/lldb/API/SBSymbol.h
Modified: lldb/trunk/include/lldb/API/SBSymbol.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBSymbol.h?rev=115543&r1=115542&r2=115543&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBSymbol.h (original)
+++ lldb/trunk/include/lldb/API/SBSymbol.h Mon Oct 4 14:38:50 2010
@@ -44,6 +44,7 @@
GetDescription (lldb::SBStream &description);
private:
+ friend class SBFrame;
friend class SBSymbolContext;
SBSymbol (lldb_private::Symbol *lldb_object_ptr);
More information about the lldb-commits
mailing list