Skip to content

Commit 23fa184

Browse files
authored
src: fix small compile warning in quic/streams.cc
Fixes: #60110 PR-URL: #60118 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 3db2f58 commit 23fa184

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)