Rename DeckKeyword::isKeyword -> DeckKeyword::is

This commit is contained in:
Joakim Hove
2021-11-16 08:35:21 +01:00
parent 9d1f512b44
commit 0998309138

View File

@@ -77,8 +77,8 @@ namespace Opm {
void write_TITLE( DeckOutput& output ) const;
template <class Keyword>
bool isKeyword() const {
if (Keyword::keywordName == m_keywordName)
bool is() const {
if (Keyword::keywordName == this->m_keywordName)
return true;
else
return false;