Fix some Doxygen warnings

This commit is contained in:
Martchus 2019-06-01 15:07:48 +02:00
parent 8c88298fe8
commit 69c72909e8
2 changed files with 2 additions and 2 deletions

View File

@ -864,7 +864,7 @@ u16string Id3v2Frame::parseWideString(const char *buffer, size_t dataSize, TagTe
* \param encoding Specifies the encoding of the string. Might be reset if a byte order mark is found.
* \remarks This method is not used anymore and might be deleted.
*/
void Id3v2Frame::parseBom(const char *buffer, size_t maxSize, TagTextEncoding &encoding, Diagnostics &diag)
void Id3v2Frame::parseBom(const char *buffer, std::size_t maxSize, TagTextEncoding &encoding, Diagnostics &diag)
{
switch (encoding) {
case TagTextEncoding::Utf16BigEndian:

View File

@ -131,7 +131,7 @@ void Mp4Atom::internalParse(Diagnostics &diag)
* previous offset and the start offset as 32-bit unsigned integer to the \a stream.
* Then it seeks back to the previous offset.
*/
void Mp4Atom::seekBackAndWriteAtomSize(std::ostream &stream, const ostream::pos_type &startOffset, Diagnostics &diag)
void Mp4Atom::seekBackAndWriteAtomSize(std::ostream &stream, const std::ostream::pos_type &startOffset, Diagnostics &diag)
{
ostream::pos_type currentOffset = stream.tellp();
const auto atomSize(currentOffset - startOffset);