We don't need the the members and the accessors.

This commit is contained in:
Vassil Vassilev 2013-08-21 14:13:28 +02:00 committed by sftnight
parent 162101dd9d
commit 6527a15123

View File

@ -195,14 +195,6 @@ namespace cling {
///
bool m_PrintIR;
///\brief Flag toggling the state storing on or off.
///
bool m_StoreState;
///\brief Flag toggling the state comparing on or off.
///
bool m_CompareState;
///\brief Flag toggling the dynamic scopes on or off.
///
bool m_DynamicLookupEnabled;
@ -626,12 +618,6 @@ namespace cling {
bool isPrintingIR() const { return m_PrintIR; }
void enablePrintIR(bool print = true) { m_PrintIR = print; }
bool isStoringState() const { return m_StoreState; }
void enableStoreState(bool store = true) { m_StoreState = store; }
bool isComparingState() const { return m_CompareState; }
void enableCompareState(bool compare = true) { m_CompareState = compare; }
void enableDynamicLookup(bool value = true);
bool isDynamicLookupEnabled() const { return m_DynamicLookupEnabled; }