commit | 324067bc91877dbbd6ec3a8663914fa3dbb7e3c9 | [log] [tgz] |
---|---|---|
author | Jim Ingham <jingham@apple.com> | Thu Sep 30 00:54:27 2010 +0000 |
committer | Jim Ingham <jingham@apple.com> | Thu Sep 30 00:54:27 2010 +0000 |
tree | 170672c47f1871788b5d88a0f4f508cdbcee919b | |
parent | 8ff5a377b807c38d256d56757803a36d89629911 [diff] [blame] |
Add "-o" option to "expression" which prints the object description if available. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@115115 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/CPPLanguageRuntime.cpp b/source/Target/CPPLanguageRuntime.cpp index d694b77..d0fc7af 100644 --- a/source/Target/CPPLanguageRuntime.cpp +++ b/source/Target/CPPLanguageRuntime.cpp
@@ -33,3 +33,10 @@ // 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; +}