Skip to content

Commit e2fefd7

Browse files
committed
quic: fixup windows coverage compile error
PR-URL: #59381 Fixes: #59369 Reviewed-By: Filip Skokan <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 24e28c4 commit e2fefd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/quic/data.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,15 @@ T Store::convert() const {
149149
}
150150

151151
Store::operator uv_buf_t() const {
152-
return convert<uv_buf_t, typeof(*uv_buf_t::base)>();
152+
return convert<uv_buf_t, char>();
153153
}
154154

155155
Store::operator ngtcp2_vec() const {
156-
return convert<ngtcp2_vec, typeof(*ngtcp2_vec::base)>();
156+
return convert<ngtcp2_vec, uint8_t>();
157157
}
158158

159159
Store::operator nghttp3_vec() const {
160-
return convert<nghttp3_vec, typeof(*ngtcp2_vec::base)>();
160+
return convert<nghttp3_vec, uint8_t>();
161161
}
162162

163163
void Store::MemoryInfo(MemoryTracker* tracker) const {

0 commit comments

Comments
 (0)