Changed: Let IntegrandBase::parse() return false by default

This commit is contained in:
Knut Morten Okstad 2021-03-04 08:38:07 +01:00
parent 4ac708f596
commit a8f6662020

View File

@ -49,7 +49,7 @@ public:
virtual ~IntegrandBase() {}
//! \brief Parses a data section from an XML element.
virtual bool parse(const TiXmlElement*) { return true; }
virtual bool parse(const TiXmlElement*) { return false; }
//! \brief Prints out the problem definition to the log stream.
virtual void printLog() const {}