[Lldb-commits] [lldb] r168827 - /lldb/trunk/include/lldb/Target/StopInfo.h
Daniel Malea
daniel.malea at intel.com
Wed Nov 28 15:20:22 PST 2012
Author: dmalea
Date: Wed Nov 28 17:20:22 2012
New Revision: 168827
URL: http://llvm.org/viewvc/llvm-project?rev=168827&view=rev
Log:
Add 'class' keyword to friend definition (to fix gcc 4.6 build)
Modified:
lldb/trunk/include/lldb/Target/StopInfo.h
Modified: lldb/trunk/include/lldb/Target/StopInfo.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/StopInfo.h?rev=168827&r1=168826&r2=168827&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/StopInfo.h (original)
+++ lldb/trunk/include/lldb/Target/StopInfo.h Wed Nov 28 17:20:22 2012
@@ -23,7 +23,7 @@
class StopInfo
{
- friend Process::ProcessEventData;
+ friend class Process::ProcessEventData;
friend class ThreadPlanBase;
public:
More information about the lldb-commits
mailing list