diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp | 32 |
1 files changed, 13 insertions, 19 deletions
diff --git a/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp b/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp index 28cfab1..c7e7b25 100644 --- a/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp +++ b/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp @@ -1,4 +1,5 @@ -//===-- CPPLanguageRuntime.cpp -------------------------------------------------*- C++ -*-===// +//===-- CPPLanguageRuntime.cpp +//-------------------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -23,26 +24,19 @@ using namespace lldb_private; //---------------------------------------------------------------------- // Destructor //---------------------------------------------------------------------- -CPPLanguageRuntime::~CPPLanguageRuntime() -{ -} - -CPPLanguageRuntime::CPPLanguageRuntime (Process *process) : - LanguageRuntime (process) -{ +CPPLanguageRuntime::~CPPLanguageRuntime() {} -} +CPPLanguageRuntime::CPPLanguageRuntime(Process *process) + : LanguageRuntime(process) {} -bool -CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object) -{ - // C++ has no generic way to do this. - return false; +bool CPPLanguageRuntime::GetObjectDescription(Stream &str, + ValueObject &object) { + // 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; +bool CPPLanguageRuntime::GetObjectDescription( + Stream &str, Value &value, ExecutionContextScope *exe_scope) { + // C++ has no generic way to do this. + return false; } |