Apply clang-format

This commit is contained in:
Martchus 2023-02-03 13:31:40 +01:00
parent a9c4bca679
commit cb93d6900c
6 changed files with 8 additions and 11 deletions

View File

@ -14,8 +14,7 @@ namespace TagParser {
* *
* A template specialization for each FieldMapBasedTag subclass must be provided. * A template specialization for each FieldMapBasedTag subclass must be provided.
*/ */
template <typename ImplementationType> class FieldMapBasedTagTraits { template <typename ImplementationType> class FieldMapBasedTagTraits {};
};
/*! /*!
* \class TagParser::FieldMapBasedTag * \class TagParser::FieldMapBasedTag

View File

@ -31,8 +31,7 @@ class Diagnostics;
* *
* For an example of such a specialization see FileElementTraits<Mp4Atom> or FileElementTraits<EbmlElement>. * For an example of such a specialization see FileElementTraits<Mp4Atom> or FileElementTraits<EbmlElement>.
*/ */
template <typename ImplementationType> class FileElementTraits { template <typename ImplementationType> class FileElementTraits {};
};
/*! /*!
* \class TagParser::GenericFileElement * \class TagParser::GenericFileElement

View File

@ -13,8 +13,7 @@ template <class implementationType> class TagField;
* *
* A template specialization for each TagField subclass must be provided. * A template specialization for each TagField subclass must be provided.
*/ */
template <typename ImplementationType> class TagFieldTraits { template <typename ImplementationType> class TagFieldTraits {};
};
/*! /*!
* \brief The TagField class is used by FieldMapBasedTag to store the fields. * \brief The TagField class is used by FieldMapBasedTag to store the fields.

View File

@ -1357,8 +1357,8 @@ void Mp4Track::makeMedia(Diagnostics &diag)
codedLanguage = 0; codedLanguage = 0;
break; break;
} }
diag.emplace_back( diag.emplace_back(DiagLevel::Warning, "Assigned language \"" % *language + "\" is of an invalid format. Setting language to undefined.",
DiagLevel::Warning, "Assigned language \"" % *language + "\" is of an invalid format. Setting language to undefined.", "making mdhd atom"); "making mdhd atom");
codedLanguage = 0x55C4; // und(efined) codedLanguage = 0x55C4; // und(efined)
break; break;
} }