Commit: ac0852cea0d607b97de1930841fadb1ac1b019e9
Author: Sebastián Barschkis
Date:   Wed Jun 24 18:36:42 2020 +0200
Branches: master
https://developer.blender.org/rBac0852cea0d607b97de1930841fadb1ac1b019e9

Fluid: Fix OpenVDB compiler warnings

Kudos to brecht for noticing the issue

===================================================================

M       extern/mantaflow/preprocessed/fileio/iovdb.cpp
M       extern/mantaflow/preprocessed/gitinfo.h

===================================================================

diff --git a/extern/mantaflow/preprocessed/fileio/iovdb.cpp 
b/extern/mantaflow/preprocessed/fileio/iovdb.cpp
index 31958dcb977..b31f7e0e760 100644
--- a/extern/mantaflow/preprocessed/fileio/iovdb.cpp
+++ b/extern/mantaflow/preprocessed/fileio/iovdb.cpp
@@ -478,7 +478,7 @@ int readObjectsVDB(const string &filename, 
std::vector<PbClass *> *objects, floa
     }
 
     // For every manta object, we loop through the vdb grid list and check for 
a match
-    for (const openvdb::GridBase::Ptr vdbGrid : gridsVDB) {
+    for (const openvdb::GridBase::Ptr &vdbGrid : gridsVDB) {
       bool nameMatch = (vdbGrid->getName() == (*iter)->getName());
 
       // Sanity checks: Only load valid grids and make sure names match.
diff --git a/extern/mantaflow/preprocessed/gitinfo.h 
b/extern/mantaflow/preprocessed/gitinfo.h
index 1e96ee26de2..e4183ec342b 100644
--- a/extern/mantaflow/preprocessed/gitinfo.h
+++ b/extern/mantaflow/preprocessed/gitinfo.h
@@ -1,3 +1,3 @@
 
 
-#define MANTA_GIT_VERSION "commit 6725e6840a906167cc63474a22fc822d9aebf3e7"
+#define MANTA_GIT_VERSION "commit 5ae24e860cf15f1310666e119575cc01bea48598"

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to