summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2016-04-11 20:49:56 -0700
committerThiago Macieira <thiago.macieira@intel.com>2016-04-12 18:19:49 +0000
commit78973b481c3cfb6db2511f0487d1045ad16a21eb (patch)
treec73d5631464dcd48ecf63d76b02925b387d563d6
parentb6b65063800bf939144a4b63339c7ee41339c03b (diff)
Fix ICC warning about variable used uninitialized
std::tuple<> apparently has a trivial constructor, so it really is uninitialized. Change-Id: Id75834dab9ed466e94c7ffff1444801e4bf0d7dc Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
-rw-r--r--src/3rdparty/assimp/code/BoostWorkaround/boost/tuple/tuple.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/assimp/code/BoostWorkaround/boost/tuple/tuple.hpp b/src/3rdparty/assimp/code/BoostWorkaround/boost/tuple/tuple.hpp
index 0ff61d9c3..3c1dd7b33 100644
--- a/src/3rdparty/assimp/code/BoostWorkaround/boost/tuple/tuple.hpp
+++ b/src/3rdparty/assimp/code/BoostWorkaround/boost/tuple/tuple.hpp
@@ -275,7 +275,7 @@ namespace boost {
// Constructs a tuple with 0 elements (well ...)
inline tuple <> make_tuple () {
- tuple <> t;
+ tuple <> t = tuple <> ();
return t;
}
};