Use quint64 everywhere for the transform rounds number.

This commit is contained in:
Felix Geyer 2012-05-08 22:31:09 +02:00
parent ebce183925
commit 8122ab2b2c
8 changed files with 13 additions and 13 deletions

View file

@ -57,7 +57,7 @@ public:
m_backend->processInPlace(data);
}
inline void processInPlace(QByteArray& data, int rounds) {
inline void processInPlace(QByteArray& data, quint64 rounds) {
Q_ASSERT(rounds > 0);
m_backend->processInPlace(data, rounds);
}