Prefix all size_t with std::
done automatically by executing regex replace `([^:0-9a-zA-Z_])size_t([^0-9a-zA-Z_])` -> `$1std::size_t$2`
This commit is contained in:
parent
eca98eeb3e
commit
7d8f115185
158 changed files with 669 additions and 634 deletions
|
@ -85,7 +85,7 @@ signals:
|
|||
*/
|
||||
void EmulationStopping();
|
||||
|
||||
void UpdateProgress(size_t written, size_t total);
|
||||
void UpdateProgress(std::size_t written, std::size_t total);
|
||||
void CIAInstallReport(Service::AM::InstallStatus status, QString filepath);
|
||||
void CIAInstallFinished();
|
||||
// Signal that tells widgets to update icons to use the current theme
|
||||
|
@ -161,7 +161,7 @@ private slots:
|
|||
void OnGameListShowList(bool show);
|
||||
void OnMenuLoadFile();
|
||||
void OnMenuInstallCIA();
|
||||
void OnUpdateProgress(size_t written, size_t total);
|
||||
void OnUpdateProgress(std::size_t written, std::size_t total);
|
||||
void OnCIAInstallReport(Service::AM::InstallStatus status, QString filepath);
|
||||
void OnCIAInstallFinished();
|
||||
void OnMenuRecentFile();
|
||||
|
@ -255,5 +255,5 @@ protected:
|
|||
void dragMoveEvent(QDragMoveEvent* event) override;
|
||||
};
|
||||
|
||||
Q_DECLARE_METATYPE(size_t);
|
||||
Q_DECLARE_METATYPE(std::size_t);
|
||||
Q_DECLARE_METATYPE(Service::AM::InstallStatus);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue