[Lldb-commits] [lldb] r191114 - Remove unused friend class forward definitions (causing problem with MSVC anyway).
Virgile Bello
virgile.bello at gmail.com
Fri Sep 20 15:28:42 PDT 2013
Author: xen2
Date: Fri Sep 20 17:28:42 2013
New Revision: 191114
URL: http://llvm.org/viewvc/llvm-project?rev=191114&view=rev
Log:
Remove unused friend class forward definitions (causing problem with MSVC anyway).
Modified:
lldb/trunk/include/lldb/Breakpoint/BreakpointLocation.h
lldb/trunk/include/lldb/Target/Process.h
Modified: lldb/trunk/include/lldb/Breakpoint/BreakpointLocation.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Breakpoint/BreakpointLocation.h?rev=191114&r1=191113&r2=191114&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Breakpoint/BreakpointLocation.h (original)
+++ lldb/trunk/include/lldb/Breakpoint/BreakpointLocation.h Fri Sep 20 17:28:42 2013
@@ -324,7 +324,6 @@ public:
protected:
friend class BreakpointLocationList;
- friend class CommandObjectBreakpointCommandAdd;
friend class Process;
//------------------------------------------------------------------
Modified: lldb/trunk/include/lldb/Target/Process.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Process.h?rev=191114&r1=191113&r2=191114&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Process.h (original)
+++ lldb/trunk/include/lldb/Target/Process.h Fri Sep 20 17:28:42 2013
@@ -1368,9 +1368,7 @@ class Process :
{
friend class ThreadList;
friend class ClangFunction; // For WaitForStateChangeEventsPrivate
-friend class CommandObjectProcessLaunch;
friend class ProcessEventData;
-friend class CommandObjectBreakpointCommand;
friend class StopInfo;
public:
More information about the lldb-commits
mailing list