fix compile warning

This commit is contained in:
Max 2022-09-22 14:05:39 -04:00
parent 1cd344a838
commit 245ff05489
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class CryptoState
{ {
public: public:
CryptoState() : CryptoState() :
kid(0), algid(0), mi(MESSAGE_INDICATOR_LENGTH) mi(MESSAGE_INDICATOR_LENGTH), kid(0), algid(0)
{ } { }
public: public:
std::vector<uint8_t> mi; std::vector<uint8_t> mi;