add missing override and explicit specifiers in common

This commit is contained in:
RickyRister 2025-01-25 00:16:39 -08:00
parent f6c31bf901
commit cf3a33a09f
8 changed files with 11 additions and 11 deletions

View file

@ -36,8 +36,8 @@ private:
unsigned int cdf(unsigned int min, unsigned int max);
public:
RNG_SFMT(QObject *parent = 0);
unsigned int rand(int min, int max);
explicit RNG_SFMT(QObject *parent = nullptr);
unsigned int rand(int min, int max) override;
};
#endif