[Lldb-commits] [lldb] r107693 - /lldb/trunk/source/Plugins/Process/Utility/libunwind/src/RemoteUnwindProfile.h

Greg Clayton gclayton at apple.com
Tue Jul 6 13:29:25 PDT 2010


Author: gclayton
Date: Tue Jul  6 15:29:25 2010
New Revision: 107693

URL: http://llvm.org/viewvc/llvm-project?rev=107693&view=rev
Log:
Avoid duplicate names (something else that clang++ really doesn't like) in
function prototype (from Jean-Daniel Dupas).


Modified:
    lldb/trunk/source/Plugins/Process/Utility/libunwind/src/RemoteUnwindProfile.h

Modified: lldb/trunk/source/Plugins/Process/Utility/libunwind/src/RemoteUnwindProfile.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/libunwind/src/RemoteUnwindProfile.h?rev=107693&r1=107692&r2=107693&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/libunwind/src/RemoteUnwindProfile.h (original)
+++ lldb/trunk/source/Plugins/Process/Utility/libunwind/src/RemoteUnwindProfile.h Tue Jul  6 15:29:25 2010
@@ -59,7 +59,7 @@
 
 class RemoteProcInfo;
 
-bool AssemblyParse (RemoteProcInfo *procinfo, unw_accessors_t *as, unw_addr_space_t as, uint64_t start, uint64_t end, RemoteUnwindProfile &profile, void *arg);
+bool AssemblyParse (RemoteProcInfo *procinfo, unw_accessors_t *accessor, unw_addr_space_t as, uint64_t start, uint64_t end, RemoteUnwindProfile &profile, void *arg);
 
 
 class FuncBounds {





More information about the lldb-commits mailing list