From 034d64923745b3732c8bcc6b9f12563839372ba4 Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Mon, 14 Aug 2023 11:14:28 -0400 Subject: [PATCH] fixup! src: set port in node_options to uint16_t --- src/node_options.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_options.h b/src/node_options.h index 44de5c120bfc5e..ad29e75ca1fc5d 100644 --- a/src/node_options.h +++ b/src/node_options.h @@ -33,7 +33,6 @@ class HostPort { const std::string& host() const { return host_name_; } uint16_t port() const { - CHECK_GE(port_, 0); return port_; }