◐ Shell
clean mode source ↗

src: fix small compile warning in quic/streams.cc · nodejs/node@f49175b

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: