Fix missing break in MatroskaChapter::internalParse()

This commit is contained in:
Martchus 2018-06-02 22:56:33 +02:00
parent 0a640c9f7f
commit b665d2557a
1 changed files with 1 additions and 0 deletions

View File

@ -112,6 +112,7 @@ void MatroskaChapter::internalParse(Diagnostics &diag)
break;
case MatroskaIds::ChapterAtom:
m_nestedChapters.emplace_back(make_unique<MatroskaChapter>(chapterAtomChild));
break;
default:
diag.emplace_back(DiagLevel::Warning,
"\"ChapterAtom\"-element contains unknown child element \"" % chapterAtomChild->idToString() + "\". It will be ignored.", context);