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/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.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/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp')
-rw-r--r-- | lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp index 4bb1edc40d5..46747571198 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp @@ -41,7 +41,7 @@ static const char *pluginDesc = "Apple Objective C Language Runtime - Version 1" static const char *pluginShort = "language.apple.objc.v1"; lldb::ValueObjectSP -AppleObjCRuntimeV1::GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope) +AppleObjCRuntimeV1::GetDynamicValue (lldb::ValueObjectSP in_value) { lldb::ValueObjectSP ret_sp; return ret_sp; |