Inline Hash::init()

This commit is contained in:
Carlo Nucera 2020-07-01 18:03:22 -04:00
parent d63a5ded76
commit c8c4bcf90e
2 changed files with 2 additions and 4 deletions

View file

@ -27,7 +27,7 @@ static size_t regularHashSize(HashType type) {
abort();
}
void Hash::init()
Hash::Hash(HashType type) : type(type)
{
hashSize = regularHashSize(type);
assert(hashSize <= maxHashSize);

View file

@ -32,7 +32,7 @@ struct Hash
HashType type;
/* Create a zero-filled hash object. */
Hash(HashType type) : type(type) { init(); };
Hash(HashType type);
/* Initialize the hash from a string representation, in the format
"[<type>:]<base16|base32|base64>" or "<type>-<base64>" (a
@ -49,8 +49,6 @@ private:
// type must be provided, s must not include <type> prefix
Hash(std::string_view s, std::pair<HashType, bool> typeAndSRI);
void init();
public:
/* Check whether a hash is set. */
operator bool () const { return (bool) type; }