summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorshi chao gao2018-04-19 17:13:59 +0800
committershi chao gao2018-04-19 17:33:32 +0800
commitd307fd1702468fa8a353646cee0ec5ef3b89bf50 (patch)
treef3a52a7cc7cc350444fbebc7c4032631656f2cd0
parentd3bb362bdf7e958ecd49c98123ed4685950ff821 (diff)
downloadaur-d307fd1702468fa8a353646cee0ec5ef3b89bf50.tar.gz
clean
-rw-r--r--17a198081379384ed9373828f905592ce9c4bdf3.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/17a198081379384ed9373828f905592ce9c4bdf3.patch b/17a198081379384ed9373828f905592ce9c4bdf3.patch
deleted file mode 100644
index 82e3c004b0b4..000000000000
--- a/17a198081379384ed9373828f905592ce9c4bdf3.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 17a198081379384ed9373828f905592ce9c4bdf3 Mon Sep 17 00:00:00 2001
-From: Robert Schumacher <roschuma@microsoft.com>
-Date: Wed, 3 Jan 2018 14:09:36 -0800
-Subject: [PATCH] Fix warning due to boost 1.66
-
----
- Release/include/pplx/threadpool.h | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/Release/include/pplx/threadpool.h b/Release/include/pplx/threadpool.h
-index c67db358..db1e97c8 100644
---- a/Release/include/pplx/threadpool.h
-+++ b/Release/include/pplx/threadpool.h
-@@ -67,9 +67,10 @@ class threadpool
- boost::asio::io_service& service() { return m_service; }
-
- protected:
-- threadpool(size_t num_threads) : m_service(num_threads) {}
-+ threadpool(size_t num_threads) : m_service(static_cast<int>(num_threads)) {}
-
- boost::asio::io_service m_service;
- };
-
- }
-+