dashpay / bls-signatures

BLS signatures in C++, using the relic toolkit
Apache License 2.0
10 stars 34 forks source link

Fix missing include for std::unique_ptr #35

Closed OlegGirko closed 2 years ago

OlegGirko commented 2 years ago

This template is defined in <memory>, but it was not included.

Somehow this was not causing problems with older versions of GCC, probably because it was transitively included by something else.

However, this caused an error with GCC 12 that is stricter in this regard.