Rename dataIndex to mDataIndex according to our naming conventions
This commit is contained in:
parent
7d26a694da
commit
6c38b69e11
|
@ -107,7 +107,7 @@ namespace {
|
||||||
, settings(settings)
|
, settings(settings)
|
||||||
, callbacks(callbacks)
|
, callbacks(callbacks)
|
||||||
, mTrackExecution(trackExecution)
|
, mTrackExecution(trackExecution)
|
||||||
, dataIndex(trackExecution->getNewDataIndex()) {}
|
, mDataIndex(trackExecution->getNewDataIndex()) {}
|
||||||
typedef std::map<nonneg int, std::shared_ptr<ExprEngine::Value>> Memory;
|
typedef std::map<nonneg int, std::shared_ptr<ExprEngine::Value>> Memory;
|
||||||
Memory memory;
|
Memory memory;
|
||||||
int * const symbolValueIndex;
|
int * const symbolValueIndex;
|
||||||
|
@ -189,7 +189,7 @@ namespace {
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
TrackExecution * const mTrackExecution;
|
TrackExecution * const mTrackExecution;
|
||||||
const int dataIndex;
|
const int mDataIndex;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue