summarylogtreecommitdiffstats
path: root/boost_1.70_fixes.patch
diff options
context:
space:
mode:
Diffstat (limited to 'boost_1.70_fixes.patch')
-rw-r--r--boost_1.70_fixes.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/boost_1.70_fixes.patch b/boost_1.70_fixes.patch
deleted file mode 100644
index df0643003ef9..000000000000
--- a/boost_1.70_fixes.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --unified --recursive --text aasdk-git/src/Channel/ServiceChannel.cpp aasdk-git.new/src/Channel/ServiceChannel.cpp
---- aasdk-git/src/Channel/ServiceChannel.cpp
-+++ aasdk-git.new/src/Channel/ServiceChannel.cpp
-@@ -38,7 +38,7 @@
-
- void ServiceChannel::send(messenger::Message::Pointer message, SendPromise::Pointer promise)
- {
-- auto sendPromise = messenger::SendPromise::defer(strand_.get_io_service());
-+ auto sendPromise = messenger::SendPromise::defer(strand_.context());
- io::PromiseLink<>::forward(*sendPromise, std::move(promise));
- messenger_->enqueueSend(std::move(message), std::move(sendPromise));
- }
-diff --unified --recursive --text aasdk-git/src/USB/AccessoryModeQueryChain.cpp aasdk-git.new/src/USB/AccessoryModeQueryChain.cpp
---- aasdk-git/src/USB/AccessoryModeQueryChain.cpp
-+++ aasdk-git.new/src/USB/AccessoryModeQueryChain.cpp
-@@ -58,7 +58,7 @@
- });
-
- this->startQuery(AccessoryModeQueryType::PROTOCOL_VERSION,
-- std::make_shared<USBEndpoint>(usbWrapper_, strand_.get_io_service(), std::move(handle)),
-+ std::make_shared<USBEndpoint>(usbWrapper_, strand_.context(), std::move(handle)),
- std::move(queryPromise));
- }
- });