diff options
author | Jim Ingham <jingham@apple.com> | 2011-03-31 23:01:21 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-03-31 23:01:21 +0000 |
commit | 8d543de400b395c9adfab29c34b1e133c752d64c (patch) | |
tree | 2961806d4dc17aeb525b1d8f470eb8c51534813f /lldb/source/Target/CPPLanguageRuntime.cpp | |
parent | d74b72b8a9cf76fae395110218cf06f8ae57c04f (diff) | |
download | bcm5719-llvm-8d543de400b395c9adfab29c34b1e133c752d64c.tar.gz bcm5719-llvm-8d543de400b395c9adfab29c34b1e133c752d64c.zip |
Remove unneeded ExecutionContextScope variables.
llvm-svn: 128685
Diffstat (limited to 'lldb/source/Target/CPPLanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/CPPLanguageRuntime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/CPPLanguageRuntime.cpp b/lldb/source/Target/CPPLanguageRuntime.cpp index d0fc7af8609..d80ed210440 100644 --- a/lldb/source/Target/CPPLanguageRuntime.cpp +++ b/lldb/source/Target/CPPLanguageRuntime.cpp @@ -28,7 +28,7 @@ CPPLanguageRuntime::CPPLanguageRuntime (Process *process) : } bool -CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object, ExecutionContextScope *exe_scope) +CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object) { // C++ has no generic way to do this. return false; |