Remove useless flag.

This commit is contained in:
Vassil Vassilev 2014-02-28 16:55:11 +01:00 committed by sftnight
parent f29b09e054
commit c745dcc29c
2 changed files with 1 additions and 4 deletions

View File

@ -159,9 +159,6 @@ namespace cling {
///
bool m_PrintAST;
///\brief Flag toggling the AST printing on or off.
///
bool m_PrintIR;
///\brief Flag toggling the dynamic scopes on or off.
///

View File

@ -177,7 +177,7 @@ namespace cling {
Interpreter::Interpreter(int argc, const char* const *argv,
const char* llvmdir /*= 0*/) :
m_UniqueCounter(0), m_PrintAST(false), m_PrintIR(false),
m_UniqueCounter(0), m_PrintAST(false),
m_DynamicLookupEnabled(false), m_RawInputEnabled(false) {
m_LLVMContext.reset(new llvm::LLVMContext);