From adf14e2617b0d85c7b23020ed8761b47e92ce336 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 22 Jun 2020 19:08:45 +0200 Subject: [PATCH] quic: fix lint error in node_quic_crypto Currently, the following lint error is generated: Running C++ linter... File "src/quic/node_quic_crypto.cc" does not use "String" make[1]: *** [Makefile:1336: tools/.cpplintstamp] Error 1 This commit removes the unused using declaration. PR-URL: https://github.com/nodejs/node/pull/34019 Reviewed-By: Richard Lau Reviewed-By: James M Snell --- src/quic/node_quic_crypto.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/quic/node_quic_crypto.cc b/src/quic/node_quic_crypto.cc index e0ad5d6f3306cb..0f5e2db9e1240c 100644 --- a/src/quic/node_quic_crypto.cc +++ b/src/quic/node_quic_crypto.cc @@ -31,7 +31,6 @@ namespace node { using crypto::EntropySource; using v8::Local; -using v8::String; using v8::Value; namespace quic {