fix: delete semicolons at the end of .cpp file's functions

my lsp is weird sometimes
This commit is contained in:
flow
2022-03-07 19:55:20 -03:00
parent 9c57b54a81
commit b3c2a56ece
3 changed files with 5 additions and 5 deletions

View File

@ -9,12 +9,12 @@ const char* ListModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name"
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
{
FlameMod::loadIndexedPack(m, obj);
};
}
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
{
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
};
}
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
{

View File

@ -14,7 +14,7 @@ void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
{
Modrinth::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
};
}
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
{