Skip to content

Commit

Permalink
Fix builds (LMMS#6548)
Browse files Browse the repository at this point in the history
Add the comment "// namespace lmms" to the closing scope of the lmms
namespaces. The "scripted-checks" are quite strict. Perhaps they should
be renamed to "strict-checks". ;)

Include "cassert" in UpgradeExtendedNoteRange.cpp to hopefully fix the
mingw builds.
  • Loading branch information
michaelgregorius committed Aug 11, 2023
1 parent 5335f6d commit 5a67993
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/core/UpgradeExtendedNoteRange.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
#include <QDomElement>

#include <set>
#include <cassert>


namespace lmms
{
Expand Down Expand Up @@ -428,4 +430,4 @@ void UpgradeExtendedNoteRange::upgrade()
}
}

}
} // namespace lmms
2 changes: 1 addition & 1 deletion src/core/UpgradeExtendedNoteRange.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ class UpgradeExtendedNoteRange
QDomElement & m_domElement;
};

}
} // namespace lmms

#endif // LMMS_UPGRADEEXTENDEDNOTERANGE_H

0 comments on commit 5a67993

Please sign in to comment.