Skip to content

Commit

Permalink
Fix build warnings and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nhielost committed Mar 26, 2024
1 parent aba4689 commit 39ec073
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/mmg-midi.cpp
Expand Up @@ -289,6 +289,6 @@ void MMGMIDI::backendError(std::string_view msg, const libremidi::source_locatio
{
midi()->blog(LOG_INFO, QString("ERROR: ") + msg.data());
midi()->blog(LOG_DEBUG,
QString("Debug Info: %1 at %2:%3").arg(loc.function_name()).arg(loc.file_name()).arg(loc.line()));
QString("Debug Info: %1 at %2:%3").arg(loc.function_name()).arg(loc.file_name()).arg(loc.line()));
}
// End MMGMIDI
4 changes: 2 additions & 2 deletions src/mmg-settings.cpp
Expand Up @@ -25,6 +25,6 @@ using namespace MMGUtils;

MMGSettings::MMGSettings(QObject *parent) : QObject(parent) {}

void MMGSettings::json(const QString &key, QJsonObject &json_obj) const {}
void MMGSettings::json(const QString &, QJsonObject &) const {}

void MMGSettings::load(const QJsonObject &json_obj) {}
void MMGSettings::load(const QJsonObject &) {}

0 comments on commit 39ec073

Please sign in to comment.