Removal of more mem*() calls.

This commit is contained in:
Adam Ierymenko 2019-03-25 11:59:14 -07:00
parent b56753ea9f
commit 2600b1f144
2 changed files with 18 additions and 12 deletions

View file

@ -65,9 +65,12 @@ class Tag : public Credential
public:
static inline Credential::Type credentialType() { return Credential::CREDENTIAL_TYPE_TAG; }
Tag()
Tag() :
_id(0),
_value(0),
_networkId(0),
_ts(0)
{
memset(this,0,sizeof(Tag));
}
/**