[Lldb-commits] [lldb] r228878 - On second thought, a const ValueObject& has too many limitations on what it can do. Strip the constness away
Enrico Granata
egranata at apple.com
Wed Feb 11 13:53:08 PST 2015
Author: enrico
Date: Wed Feb 11 15:53:08 2015
New Revision: 228878
URL: http://llvm.org/viewvc/llvm-project?rev=228878&view=rev
Log:
On second thought, a const ValueObject& has too many limitations on what it can do. Strip the constness away
Modified:
lldb/trunk/include/lldb/Target/LanguageRuntime.h
Modified: lldb/trunk/include/lldb/Target/LanguageRuntime.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/LanguageRuntime.h?rev=228878&r1=228877&r2=228878&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/LanguageRuntime.h (original)
+++ lldb/trunk/include/lldb/Target/LanguageRuntime.h Wed Feb 11 15:53:08 2015
@@ -111,7 +111,7 @@ public:
}
virtual bool
- IsRuntimeSupportValue (const ValueObject& valobj)
+ IsRuntimeSupportValue (ValueObject& valobj)
{
return false;
}
More information about the lldb-commits
mailing list