Skip to content

Commit

Permalink
Корректировка кода.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksoid1978 committed Feb 23, 2024
1 parent dd07d02 commit d692306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/mplayerc/FileItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class CFileItem
// Chapters
template<class... Args>
void AddChapter(Args&&... args) {
m_chapters.emplace_back(args ...);
m_chapters.emplace_back(std::forward<Args>(args)...);
}

void ClearChapter() {
Expand Down

0 comments on commit d692306

Please sign in to comment.