From 4f4184c10b90a4979424c72a568cf517de651396 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. PR-URL: https://github.com/nodejs/node/pull/12993 Reviewed-By: Fedor Indutny Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Colin Ihrig --- src/node_crypto.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_crypto.cc b/src/node_crypto.cc index 5ef7d96007b4c6..19cc30ee41f410 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);