Another fix for LLDB_DISABLE_PYTHON=1

llvm-svn: 253073
This commit is contained in:
Zachary Turner 2015-11-13 20:28:31 +00:00
parent dd0071f440
commit 1f1c5a7b44
1 changed files with 5 additions and 1 deletions

View File

@ -7,6 +7,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_DISABLE_PYTHON
#include "lldb-python.h"
#include "PythonExceptionState.h"
@ -202,4 +204,6 @@ PythonExceptionState::ReadBacktrace() const
retval.assign(string_data.data(), string_data.size());
return retval;
}
}
#endif