From ef55346ab6d1d5b2ceb0a3287e896a58b5388422 Mon Sep 17 00:00:00 2001 From: mlamouri Date: Tue, 20 Oct 2015 18:23:09 -0700 Subject: Remove unused private fields in crypto/. This needed in order to use "= delete" for DISALLOW_COPY_AND_ASSIGN. BUG=447445 Review URL: https://codereview.chromium.org/1242593003 Cr-Commit-Position: refs/heads/master@{#355210} --- crypto/ec_signature_creator_openssl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/ec_signature_creator_openssl.cc') diff --git a/crypto/ec_signature_creator_openssl.cc b/crypto/ec_signature_creator_openssl.cc index c422cef..30343a7 100644 --- a/crypto/ec_signature_creator_openssl.cc +++ b/crypto/ec_signature_creator_openssl.cc @@ -18,7 +18,7 @@ namespace crypto { ECSignatureCreatorImpl::ECSignatureCreatorImpl(ECPrivateKey* key) - : key_(key), signature_len_(0) { + : key_(key) { EnsureOpenSSLInit(); } -- cgit v1.1