From ea585751fc6841294ffd498755c191959c52bb77 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 28 Oct 2019 06:46:34 +0100 Subject: [PATCH] Fix typo in NOLINT-comment. --- src/lib/uri.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/uri.cpp b/src/lib/uri.cpp index 26fc179..c257dd0 100644 --- a/src/lib/uri.cpp +++ b/src/lib/uri.cpp @@ -93,7 +93,7 @@ void URI::set_proxy() proxy.host = matches[3]; if (!matches[4].empty()) { - // NOLINTNEXTLINE(google-runtime-lint) - Need to use same as stoul. + // NOLINTNEXTLINE(google-runtime-int) - Need to use same as stoul. const unsigned long port = std::stoul(matches[4]); if (port > 65535) {