Rename dataIndex to mDataIndex according to our naming conventions

This commit is contained in:
Daniel Marjamäki 2019-09-20 06:12:20 +02:00
parent 7d26a694da
commit 6c38b69e11
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ namespace {
, settings(settings)
, callbacks(callbacks)
, mTrackExecution(trackExecution)
, dataIndex(trackExecution->getNewDataIndex()) {}
, mDataIndex(trackExecution->getNewDataIndex()) {}
typedef std::map<nonneg int, std::shared_ptr<ExprEngine::Value>> Memory;
Memory memory;
int * const symbolValueIndex;
@ -189,7 +189,7 @@ namespace {
}
private:
TrackExecution * const mTrackExecution;
const int dataIndex;
const int mDataIndex;
};
}