diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2020-02-05 22:13:09 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2020-02-05 22:13:09 +0100 |
commit | 69e4c826a34eb84c36bb07338a9a292a520f5970 (patch) | |
tree | 99d00a446b36fcdaf27dc9f1ddb5fc7e9edf5e3c /src/pubkey.cpp | |
parent | 495d2cb6b47b309070b31e0ef83fa5731a150a6d (diff) |
Fix compilation with clang
Diffstat (limited to 'src/pubkey.cpp')
-rw-r--r-- | src/pubkey.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/pubkey.cpp b/src/pubkey.cpp index 3a08c70..6f6c1e7 100644 --- a/src/pubkey.cpp +++ b/src/pubkey.cpp @@ -122,10 +122,7 @@ optional<Signature> Signature::load(const Ref & ref) if (!key || !sig) return nullopt; - return Signature { - .key = key.value(), - .sig = sig.value(), - }; + return Signature(*key, *sig); } Ref Signature::store(const Storage & st) const |