aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/API/SBCommandContext.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/source/API/SBCommandContext.cpp b/source/API/SBCommandContext.cpp
deleted file mode 100644
index 35bd6bb7c..000000000
--- a/source/API/SBCommandContext.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-//===-- SBCommandContext.cpp ------------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#include "lldb/Core/Debugger.h"
-#include "lldb/Interpreter/CommandReturnObject.h"
-
-#include "lldb/API/SBCommandContext.h"
-
-
-using namespace lldb;
-using namespace lldb_private;
-
-
-SBCommandContext::SBCommandContext (Debugger *lldb_object) :
- m_opaque (lldb_object)
-{
-}
-
-SBCommandContext::~SBCommandContext ()
-{
-}
-
-bool
-SBCommandContext::IsValid () const
-{
- return m_opaque != NULL;
-}
-