diff --git a/src/quic/application.cc b/src/quic/application.cc index 130da2c08c1f9f..5924fc3b4899e7 100644 --- a/src/quic/application.cc +++ b/src/quic/application.cc @@ -67,7 +67,7 @@ bool Session::Application::Start() { // By default there is nothing to do. Specific implementations may // override to perform more actions. return true; -}; +} void Session::Application::AcknowledgeStreamData(Stream* stream, size_t datalen) { @@ -296,7 +296,10 @@ ssize_t Session::Application::WriteVStream(PathStorage* path, // that is used for all unrecognized ALPN identifiers. class DefaultApplication final : public Session::Application { public: - using Application::Application; + // Marked NOLINT because the cpp linter gets confused about this using + // statement not being sorted with the using v8 statements at the top + // of the namespace. + using Application::Application; // NOLINT bool ReceiveStreamData(Stream* stream, const uint8_t* data, diff --git a/src/quic/transportparams.h b/src/quic/transportparams.h index 77815d8cc14a4c..1269f11fbbbf1c 100644 --- a/src/quic/transportparams.h +++ b/src/quic/transportparams.h @@ -1,6 +1,5 @@ #pragma once -#include "memory_tracker.h" #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #if HAVE_OPENSSL && NODE_OPENSSL_HAS_QUIC