add missing override and explicit specifiers in common (#5527)

This commit is contained in:
RickyRister 2025-01-25 06:06:03 -08:00 committed by GitHub
parent b911ea6e28
commit aee68f8b00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 11 additions and 11 deletions

View file

@ -8,7 +8,7 @@ class RNG_Abstract : public QObject
{
Q_OBJECT
public:
RNG_Abstract(QObject *parent = 0) : QObject(parent)
explicit RNG_Abstract(QObject *parent = nullptr) : QObject(parent)
{
}
virtual unsigned int rand(int min, int max) = 0;