| Index: crypto/signature_verifier.h
|
| diff --git a/crypto/signature_verifier.h b/crypto/signature_verifier.h
|
| index e6b6fc0116e3ef76326dc487cd178a4096fb8145..f1ea58062cf76e2b05a40648b4ad6a542514cc44 100644
|
| --- a/crypto/signature_verifier.h
|
| +++ b/crypto/signature_verifier.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "build/build_config.h"
|
| @@ -103,7 +104,7 @@ class CRYPTO_EXPORT SignatureVerifier {
|
| std::vector<uint8_t> signature_;
|
|
|
| struct VerifyContext;
|
| - VerifyContext* verify_context_;
|
| + std::unique_ptr<VerifyContext> verify_context_;
|
| };
|
|
|
| } // namespace crypto
|
|
|