From d82de41e4f1dd7e87901460545758644bacf23b1 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Sat, 4 Oct 2025 06:28:39 -0700 Subject: [PATCH] src: fix small compile warning in quic/streams.cc Fixes: https://github.com/nodejs/node/issues/60110 --- src/quic/defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic/defs.h b/src/quic/defs.h index 5519f1396d5ccb..74505d8e401f8d 100644 --- a/src/quic/defs.h +++ b/src/quic/defs.h @@ -318,7 +318,7 @@ constexpr uint64_t kMaxSizeT = std::numeric_limits::max(); constexpr uint64_t kMaxSafeJsInteger = 9007199254740991; constexpr auto kSocketAddressInfoTimeout = 60 * NGTCP2_SECONDS; constexpr size_t kMaxVectorCount = 16; -constexpr size_t kMaxStreamId = std::numeric_limits::max(); +constexpr stream_id kMaxStreamId = std::numeric_limits::max(); class DebugIndentScope final { public: