Fix builds (#6548)

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.
This commit is contained in:
Michael Gregorius
2023-08-11 18:44:13 +02:00
parent 5335f6d8c6
commit 5a6799314a
2 changed files with 4 additions and 2 deletions

View File

@@ -27,6 +27,8 @@
#include <QDomElement>
#include <set>
#include <cassert>
namespace lmms
{
@@ -428,4 +430,4 @@ void UpgradeExtendedNoteRange::upgrade()
}
}
}
} // namespace lmms

View File

@@ -42,6 +42,6 @@ private:
QDomElement & m_domElement;
};
}
} // namespace lmms
#endif // LMMS_UPGRADEEXTENDEDNOTERANGE_H