Skip to content

Commit d82de41

Browse files
committed
src: fix small compile warning in quic/streams.cc
Fixes: #60110
1 parent 10df38a commit d82de41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/quic/defs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ constexpr uint64_t kMaxSizeT = std::numeric_limits<size_t>::max();
318318
constexpr uint64_t kMaxSafeJsInteger = 9007199254740991;
319319
constexpr auto kSocketAddressInfoTimeout = 60 * NGTCP2_SECONDS;
320320
constexpr size_t kMaxVectorCount = 16;
321-
constexpr size_t kMaxStreamId = std::numeric_limits<stream_id>::max();
321+
constexpr stream_id kMaxStreamId = std::numeric_limits<stream_id>::max();
322322

323323
class DebugIndentScope final {
324324
public:

0 commit comments

Comments
 (0)