Make benchmark() method non-virtual

This commit is contained in:
Janek Bevendorff 2017-12-17 19:17:22 +01:00 committed by Jonathan White
parent 15648991fc
commit 4592de8fb6
No known key found for this signature in database
GPG Key ID: 440FC65F2E0C6E01

View File

@ -38,7 +38,7 @@ public:
virtual void randomizeTransformSalt() = 0;
virtual QSharedPointer<Kdf> clone() const = 0;
virtual int benchmark(int msec) const;
int benchmark(int msec) const;
protected:
virtual int benchmarkImpl(int msec) const = 0;