Skip to content

Commit

Permalink
Merge pull request dashpay#35 from OlegGirko/fix_include
Browse files Browse the repository at this point in the history
Fix missing include for std::unique_ptr
  • Loading branch information
UdjinM6 authored Jun 30, 2022
2 parents cc53ca3 + ca00b34 commit f96e103
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/threshold.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#include <memory>

#include "threshold.hpp"

#include "schemes.hpp"
Expand Down Expand Up @@ -296,4 +298,4 @@ namespace bls {
bool Threshold::Verify(const G1Element& pubKey, const Bytes& vecMessage, const G2Element& signature) {
return pThresholdScheme->Verify(pubKey, vecMessage, signature);
}
}
}

0 comments on commit f96e103

Please sign in to comment.