From 9e65c9f026d4c374e08700bcefa80b84a5b3f93f Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 12 May 2017 13:13:15 +0200 Subject: [PATCH] crypto: remove unnecessary template class I came across this template class but I don't understand why it is there. It is not used in the template specialization following it. I just wanted to bring it up just in case this is something that has been overlooked. --- src/node_crypto.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_crypto.cc b/src/node_crypto.cc index dac4a2e76bfe76..dcab45db62a3f0 100644 --- a/src/node_crypto.cc +++ b/src/node_crypto.cc @@ -155,7 +155,6 @@ std::string extra_root_certs_file; // NOLINT(runtime/string) X509_STORE* root_cert_store; // Just to generate static methods -template class SSLWrap; template void SSLWrap::AddMethods(Environment* env, Local t); template void SSLWrap::InitNPN(SecureContext* sc);