1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-08-08 09:42:06 +03:00

remove targets built from headers only (part II)

Summary:
Some versions of compilers, linkers and cmake doesn't support. Required to
support OSX build

Reviewed By: afrind

Differential Revision: D15204709

fbshipit-source-id: a9cbb5a59a0df0fa82838eb38a78a22e619db4ec
This commit is contained in:
Udip Pant
2019-05-03 14:20:47 -07:00
committed by Facebook Github Bot
parent cac8669705
commit 4dd8efffcb
10 changed files with 14 additions and 110 deletions

View File

@@ -161,7 +161,7 @@ class TransportClosingDeliveryCallback : public QuicSocket::DeliveryCallback {
}
}
void onCanceled(StreamId, size_t) override {
void onCanceled(StreamId, uint64_t) override {
transport_->close(folly::none);
}
@@ -280,7 +280,7 @@ void verifyCorrectness(
const folly::IOBuf& expected,
bool finExpected = false,
bool writeAll = true) {
size_t endOffset = 0;
uint64_t endOffset = 0;
size_t totalLen = 0;
bool finSet = false;
std::vector<uint64_t> offsets;