Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2020-07-31 18:58:53 +0300
committerJames M Snell <jasnell@gmail.com>2020-08-07 18:43:17 +0300
commitbfebfdb149cf2d68ceee19f207ba65e0d8357a7f (patch)
tree443e45e0334cb9990b1d8e6355b7c315f858fde9 /src/inspector
parent93959b22b197e2e9fdb4a21e65e567729d76338d (diff)
src: fix linter failures
Fix linter failures when running the linter on all source files. PR-URL: https://github.com/nodejs/node/pull/34582 Refs: https://github.com/nodejs/node/pull/34565 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'src/inspector')
-rw-r--r--src/inspector/main_thread_interface.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspector/main_thread_interface.cc b/src/inspector/main_thread_interface.cc
index a15cd52d239..0cf75a37146 100644
--- a/src/inspector/main_thread_interface.cc
+++ b/src/inspector/main_thread_interface.cc
@@ -14,8 +14,8 @@ namespace node {
namespace inspector {
namespace {
-using v8_inspector::StringView;
using v8_inspector::StringBuffer;
+using v8_inspector::StringView;
template <typename T>
class DeletableWrapper : public Deletable {