Get rid of some mem* calls that are bad C++ form (but worked fine) and cause warnings.

This commit is contained in:
Adam Ierymenko 2019-03-25 11:45:32 -07:00
parent 97046b265c
commit b56753ea9f
2 changed files with 11 additions and 15 deletions

View file

@ -58,9 +58,16 @@ class Revocation : public Credential
public:
static inline Credential::Type credentialType() { return Credential::CREDENTIAL_TYPE_REVOCATION; }
Revocation()
Revocation() :
_id(0),
_credentialId(0),
_networkId(0),
_threshold(0),
_flags(0),
_target(),
_signedBy(),
_type(Credential::CREDENTIAL_TYPE_NULL)
{
memset(this,0,sizeof(Revocation));
}
/**