forked from OSchip/llvm-project
[StackFrameRecognizer] Remove unneeded LLDB_DISABLE_PYTHON.
llvm-svn: 356486
This commit is contained in:
parent
e092f806f0
commit
b137c3570a
|
@ -59,8 +59,6 @@ public:
|
||||||
virtual ~StackFrameRecognizer(){};
|
virtual ~StackFrameRecognizer(){};
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifndef LLDB_DISABLE_PYTHON
|
|
||||||
|
|
||||||
/// \class ScriptedStackFrameRecognizer
|
/// \class ScriptedStackFrameRecognizer
|
||||||
///
|
///
|
||||||
/// Python implementation for frame recognizers. An instance of this class
|
/// Python implementation for frame recognizers. An instance of this class
|
||||||
|
@ -90,8 +88,6 @@ private:
|
||||||
DISALLOW_COPY_AND_ASSIGN(ScriptedStackFrameRecognizer);
|
DISALLOW_COPY_AND_ASSIGN(ScriptedStackFrameRecognizer);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// \class StackFrameRecognizerManager
|
/// \class StackFrameRecognizerManager
|
||||||
///
|
///
|
||||||
/// Static class that provides a registry of known stack frame recognizers.
|
/// Static class that provides a registry of known stack frame recognizers.
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
using namespace lldb;
|
using namespace lldb;
|
||||||
using namespace lldb_private;
|
using namespace lldb_private;
|
||||||
|
|
||||||
#ifndef LLDB_DISABLE_PYTHON
|
|
||||||
|
|
||||||
class ScriptedRecognizedStackFrame : public RecognizedStackFrame {
|
class ScriptedRecognizedStackFrame : public RecognizedStackFrame {
|
||||||
public:
|
public:
|
||||||
ScriptedRecognizedStackFrame(ValueObjectListSP args) {
|
ScriptedRecognizedStackFrame(ValueObjectListSP args) {
|
||||||
|
@ -50,8 +48,6 @@ ScriptedStackFrameRecognizer::RecognizeFrame(lldb::StackFrameSP frame) {
|
||||||
new ScriptedRecognizedStackFrame(args_synthesized));
|
new ScriptedRecognizedStackFrame(args_synthesized));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class StackFrameRecognizerManagerImpl {
|
class StackFrameRecognizerManagerImpl {
|
||||||
public:
|
public:
|
||||||
void AddRecognizer(StackFrameRecognizerSP recognizer,
|
void AddRecognizer(StackFrameRecognizerSP recognizer,
|
||||||
|
|
Loading…
Reference in New Issue