diff options
author | Jim Ingham <jingham@apple.com> | 2010-09-30 00:54:27 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-09-30 00:54:27 +0000 |
commit | 6c68fb45495192b676466f0595c262fb2ec53e8f (patch) | |
tree | 6ba309dd4226727dfe6637ac2f45ccf23a6b7767 /lldb/source/Target/CPPLanguageRuntime.cpp | |
parent | 083f368be1090ca60c4e98aea496608abd1defa0 (diff) | |
download | bcm5719-llvm-6c68fb45495192b676466f0595c262fb2ec53e8f.tar.gz bcm5719-llvm-6c68fb45495192b676466f0595c262fb2ec53e8f.zip |
Add "-o" option to "expression" which prints the object description if available.
llvm-svn: 115115
Diffstat (limited to 'lldb/source/Target/CPPLanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/CPPLanguageRuntime.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/source/Target/CPPLanguageRuntime.cpp b/lldb/source/Target/CPPLanguageRuntime.cpp index d694b7702b3..d0fc7af8609 100644 --- a/lldb/source/Target/CPPLanguageRuntime.cpp +++ b/lldb/source/Target/CPPLanguageRuntime.cpp @@ -33,3 +33,10 @@ CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object, Exec // C++ has no generic way to do this. return false; } + +bool +CPPLanguageRuntime::GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope) +{ + // C++ has no generic way to do this. + return false; +} |