aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/hash.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil/hash.hh')
-rw-r--r--src/libutil/hash.hh6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libutil/hash.hh b/src/libutil/hash.hh
index 180fb7633..92e10ee6e 100644
--- a/src/libutil/hash.hh
+++ b/src/libutil/hash.hh
@@ -44,6 +44,12 @@ struct Hash
string. */
Hash(std::string_view s, HashType type = htUnknown);
+ Hash(const Hash &) = default;
+
+ Hash(Hash &&) = default;
+
+ Hash & operator = (const Hash &) = default;
+
void init();
/* Check whether a hash is set. */