summaryrefslogtreecommitdiff
path: root/external/boost
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-28 18:42:27 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-28 19:13:26 +0300
commit1053688105c1064a4e04dcb2c6056b4326c4a880 (patch)
tree8f5ffe15c6b86d14b16cdb15797fcd99fb286234 /external/boost
parentf0a266681974ef3d7ae881e1d8342a6bdfd9d737 (diff)
Bin outdated patch
We use gcc 4.8 for Android now. Change-Id: I607499c9a61529349d2c3154593b2edf48eccb7e
Diffstat (limited to 'external/boost')
-rw-r--r--external/boost/UnpackedTarball_boost.mk2
-rw-r--r--external/boost/boost.random.Wuninitialized.patch10
2 files changed, 0 insertions, 12 deletions
diff --git a/external/boost/UnpackedTarball_boost.mk b/external/boost/UnpackedTarball_boost.mk
index 29c478c1b030..8af8c3602eec 100644
--- a/external/boost/UnpackedTarball_boost.mk
+++ b/external/boost/UnpackedTarball_boost.mk
@@ -65,8 +65,6 @@ boost_patches += boost.ptr_container.Wextra.warnings.patch
boost_patches += boost.ptr_container.Wunused-parameter.warnings.patch
# https://svn.boost.org/trac/boost/ticket/9898
boost_patches += boost.random.Wshadow.warnings.patch
-# https://svn.boost.org/trac/boost/ticket/9899
-boost_patches += boost.random.Wuninitialized.patch
# fixed upstream
boost_patches += boost.random.Wunused-local-typedefs.warnings.patch
# https://svn.boost.org/trac/boost/ticket/9900
diff --git a/external/boost/boost.random.Wuninitialized.patch b/external/boost/boost.random.Wuninitialized.patch
deleted file mode 100644
index 1b6384e3e7fa..000000000000
--- a/external/boost/boost.random.Wuninitialized.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- foo/foo/foo/boost/random/binomial_distribution.hpp
-+++ foo/foo/foo/boost/random/binomial_distribution.hpp
-@@ -278,6 +278,7 @@
- m = static_cast<IntType>((t_lcl+1)*p_lcl);
-
- if(use_inversion()) {
-+ btrd.r = btrd.nr = btrd.npq = btrd.b = btrd.a = btrd.c = btrd.alpha = btrd.v_r = btrd.u_rv_r = 0;
- q_n = pow((1 - p_lcl), static_cast<RealType>(t_lcl));
- } else {
- btrd.r = p_lcl/(1-p_lcl);