2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

install_dialog: Make use of [[nodiscard]] where applicable

Allows the compiler to warn against cases where the return value isn't
used (which would be a bug).
This commit is contained in:
Lioncash 2020-09-23 13:22:01 -04:00
parent e107870bc8
commit aa35e51fcd

View file

@ -20,8 +20,8 @@ public:
explicit InstallDialog(QWidget* parent, const QStringList& files);
~InstallDialog() override;
QStringList GetFiles() const;
int GetMinimumWidth() const;
[[nodiscard]] QStringList GetFiles() const;
[[nodiscard]] int GetMinimumWidth() const;
private:
QListWidget* file_list;