ESmry: remove unused member seqTime

This commit is contained in:
Joakim Hove 2020-04-02 09:26:13 +02:00
parent d3817e2fc2
commit f8e793a21a
2 changed files with 0 additions and 6 deletions

View File

@ -72,9 +72,6 @@ private:
std::unordered_map<std::string, std::string> kwunits; std::unordered_map<std::string, std::string> kwunits;
std::vector<int> seqIndex; std::vector<int> seqIndex;
std::vector<float> seqTime;
// start of simulation year, month, day, hr, min, microsec*1000000
std::vector<int> startdat; std::vector<int> startdat;
std::vector<std::string> checkForMultipleResultFiles(const Opm::filesystem::path& rootN, bool formatted) const; std::vector<std::string> checkForMultipleResultFiles(const Opm::filesystem::path& rootN, bool formatted) const;

View File

@ -346,7 +346,6 @@ ESmry::ESmry(const std::string &filename, bool loadBaseRunData) :
time = tmpData[0]; time = tmpData[0];
if (time == 0.0) { if (time == 0.0) {
seqTime.push_back(time);
seqIndex.push_back(step); seqIndex.push_back(step);
} }
@ -356,12 +355,10 @@ ESmry::ESmry(const std::string &filename, bool loadBaseRunData) :
if (std::get<0>(arraySourceList[i]) == "SEQHDR") { if (std::get<0>(arraySourceList[i]) == "SEQHDR") {
i++; i++;
reportStepNumber++; reportStepNumber++;
seqTime.push_back(time);
seqIndex.push_back(step); seqIndex.push_back(step);
} }
} else { } else {
reportStepNumber++; reportStepNumber++;
seqTime.push_back(time);
seqIndex.push_back(step); seqIndex.push_back(step);
} }