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

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;