Remove unused TagField::cleared()

This commit is contained in:
Martchus 2021-01-30 18:16:02 +01:00
parent 5b6c65aa27
commit cbd7e75972
1 changed files with 0 additions and 10 deletions

View File

@ -64,9 +64,6 @@ public:
std::vector<ImplementationType> &nestedFields();
bool supportsNestedFields() const;
private:
void cleared();
private:
IdentifierType m_id;
TagValue m_value;
@ -270,13 +267,6 @@ template <class ImplementationType> inline bool TagField<ImplementationType>::su
return static_cast<ImplementationType *>(this)->supportsNestedFields();
}
/*!
* \brief Called when the field is cleared.
*/
template <class ImplementationType> inline void TagField<ImplementationType>::cleared()
{
}
} // namespace TagParser
#endif // TAG_PARSER_TAGFIELD_H