mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-12 23:35:33 +08:00
Ref T730, CPP check issues fixed
This commit is contained in:
committed by
Mat Sutcliffe
parent
1d9cd50463
commit
30baa12a86
@@ -332,7 +332,7 @@ public:
|
||||
\sa QJsonWebToken::getRandLength()
|
||||
|
||||
*/
|
||||
void setRandLength(const int &intRandLength);
|
||||
void setRandLength(int intRandLength);
|
||||
|
||||
/**
|
||||
|
||||
@@ -397,8 +397,8 @@ private:
|
||||
QString m_strSecret;
|
||||
QString m_strAlgorithm;
|
||||
|
||||
int m_intRandLength ;
|
||||
QString m_strRandAlphanum;
|
||||
int m_intRandLength = 10;
|
||||
QString m_strRandAlphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
||||
|
||||
// helpers
|
||||
QByteArray m_byteAllData;
|
||||
|
||||
Reference in New Issue
Block a user