diff options
author | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-11-13 00:54:37 +0000 |
---|---|---|
committer | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-11-14 19:05:56 +0000 |
commit | 08f8623cb700cc51d6953b573d432f4553a5c736 (patch) | |
tree | 3b97951063de4aa6a5b4b4be2f5568f8250ef57c | |
parent | f8a137a26e2fbff287b2d15d897f1dea88df4c38 (diff) | |
download | PrismLauncher-08f8623cb700cc51d6953b573d432f4553a5c736.tar.gz PrismLauncher-08f8623cb700cc51d6953b573d432f4553a5c736.tar.bz2 PrismLauncher-08f8623cb700cc51d6953b573d432f4553a5c736.zip |
Mark paramaters of onParseFailed as unused
Signed-off-by: TheLastRar <TheLastRar@users.noreply.github.com>
-rw-r--r-- | launcher/minecraft/mod/ResourceFolderModel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/mod/ResourceFolderModel.h b/launcher/minecraft/mod/ResourceFolderModel.h index 25095a45..846df4d0 100644 --- a/launcher/minecraft/mod/ResourceFolderModel.h +++ b/launcher/minecraft/mod/ResourceFolderModel.h @@ -176,7 +176,7 @@ class ResourceFolderModel : public QAbstractListModel { * if the resource is complex and has more stuff to parse. */ virtual void onParseSucceeded(int ticket, QString resource_id); - virtual void onParseFailed(int ticket, QString resource_id) {} + virtual void onParseFailed([[maybe_unused]] int ticket, [[maybe_unused]] QString resource_id) {} protected: // Represents the relationship between a column's index (represented by the list index), and it's sorting key. |