Initialize boolean variables in-class.

Initialize the boolean variables hasRunInit_ and hasRunCleanup_ in
the class instead of in the constructor.
This commit is contained in:
Håkon Hægland
2020-11-03 15:59:53 +01:00
parent 0403d4e6e7
commit 53cbe0c57e
2 changed files with 4 additions and 4 deletions

View File

@@ -40,12 +40,12 @@ public:
private:
const std::string deckFilename_;
bool hasRunInit_;
bool hasRunCleanup_;
bool hasRunInit_ = false;
bool hasRunCleanup_ = false;
std::unique_ptr<FlowMainEbosType> mainEbos_;
std::unique_ptr<Opm::Main> main_;
};
} // namespace Opm::Python
} // namespace Opm::Pybind
#endif // OPM_SIMULATORS_HEADER_INCLUDED