mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
quic: fixup windows coverage compile error
PR-URL: https://github.com/nodejs/node/pull/59381 Fixes: https://github.com/nodejs/node/issues/59369 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <richard.lau@ibm.com>
This commit is contained in:
parent
24e28c41b5
commit
e2fefd78e2
1 changed files with 3 additions and 3 deletions
|
@ -149,15 +149,15 @@ T Store::convert() const {
|
|||
}
|
||||
|
||||
Store::operator uv_buf_t() const {
|
||||
return convert<uv_buf_t, typeof(*uv_buf_t::base)>();
|
||||
return convert<uv_buf_t, char>();
|
||||
}
|
||||
|
||||
Store::operator ngtcp2_vec() const {
|
||||
return convert<ngtcp2_vec, typeof(*ngtcp2_vec::base)>();
|
||||
return convert<ngtcp2_vec, uint8_t>();
|
||||
}
|
||||
|
||||
Store::operator nghttp3_vec() const {
|
||||
return convert<nghttp3_vec, typeof(*ngtcp2_vec::base)>();
|
||||
return convert<nghttp3_vec, uint8_t>();
|
||||
}
|
||||
|
||||
void Store::MemoryInfo(MemoryTracker* tracker) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue