aboutsummaryrefslogtreecommitdiff
path: root/source/Target/CPPLanguageRuntime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Target/CPPLanguageRuntime.cpp')
-rw-r--r--source/Target/CPPLanguageRuntime.cpp32
1 files changed, 13 insertions, 19 deletions
diff --git a/source/Target/CPPLanguageRuntime.cpp b/source/Target/CPPLanguageRuntime.cpp
index 28cfab1cefd7..c7e7b2511971 100644
--- a/source/Target/CPPLanguageRuntime.cpp
+++ b/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;
}