[Lldb-commits] [lldb] r179749 - Remove duplicate "friend"	declaration.
    Andy Gibbs 
    andyg1001 at hotmail.co.uk
       
    Thu Apr 18 00:42:20 PDT 2013
    
    
  
Author: andyg
Date: Thu Apr 18 02:42:20 2013
New Revision: 179749
URL: http://llvm.org/viewvc/llvm-project?rev=179749&view=rev
Log:
Remove duplicate "friend" declaration.
Modified:
    lldb/trunk/include/lldb/Target/Thread.h
Modified: lldb/trunk/include/lldb/Target/Thread.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Thread.h?rev=179749&r1=179748&r2=179749&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Thread.h (original)
+++ lldb/trunk/include/lldb/Target/Thread.h Thu Apr 18 02:42:20 2013
@@ -56,9 +56,6 @@ class Thread :
     public ExecutionContextScope,
     public Broadcaster
 {
-friend class ThreadEventData;
-friend class ThreadList;
-
 public:
     //------------------------------------------------------------------
     /// Broadcaster event bits definitions.
@@ -899,6 +896,7 @@ protected:
 
     friend class ThreadPlan;
     friend class ThreadList;
+    friend class ThreadEventData;
     friend class StackFrameList;
     friend class StackFrame;
     
    
    
More information about the lldb-commits
mailing list