فهرست منبع

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).
Lioncash 5 سال پیش
والد
کامیت
aa35e51fcd
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/yuzu/install_dialog.h

+ 2 - 2
src/yuzu/install_dialog.h

@@ -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;