summaryrefslogtreecommitdiffstats
path: root/libraries/hpx/gcc7.patch
diff options
context:
space:
mode:
author Matteo Bernardini2019-10-19 22:49:29 +0200
committer Matteo Bernardini2019-10-19 22:49:29 +0200
commitfc67f7a82f63f00609a7c84207827e0f219402f2 (patch)
tree136fc97f4ccd0601cd6fcae641fa9052e2900785 /libraries/hpx/gcc7.patch
parent2bf20a8424335e7f9149c2f6deeb0f2d02c93e3c (diff)
downloadslackbuilds-7d48750a64f1908e2d2cd89cdc55df9ec74328a5.tar.gz
20191019.1 global branch merge.current-20191019.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/hpx/gcc7.patch')
-rw-r--r--libraries/hpx/gcc7.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/libraries/hpx/gcc7.patch b/libraries/hpx/gcc7.patch
new file mode 100644
index 0000000000..ab8d5cb94a
--- /dev/null
+++ b/libraries/hpx/gcc7.patch
@@ -0,0 +1,23 @@
+From cc15d1c67144200f070e74d80b6d840df0a16ee3 Mon Sep 17 00:00:00 2001
+From: Thomas Heller <thomas.heller@cs.fau.de>
+Date: Thu, 4 May 2017 08:15:13 +0200
+Subject: [PATCH] Fixing uninitialized usage warning with gcc 7
+
+---
+ src/runtime/parcelset/parcel.cpp | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/src/runtime/parcelset/parcel.cpp b/src/runtime/parcelset/parcel.cpp
+index 0f86c4043a1..56714af4c7b 100644
+--- a/src/runtime/parcelset/parcel.cpp
++++ b/src/runtime/parcelset/parcel.cpp
+@@ -47,7 +47,8 @@ namespace hpx { namespace parcelset
+ creation_time_(util::high_resolution_timer::now()),
+ #endif
+ source_id_(naming::invalid_gid),
+- dest_(naming::invalid_gid)
++ dest_(naming::invalid_gid),
++ has_continuation_(false)
+ {}
+
+ parcel_data::parcel_data(naming::gid_type&& dest, naming::address&& addr,