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) , 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;
}; };
} }