Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2020-03-16 13:52:07 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-03-16 13:52:18 +0300
commit35a29befb3678a684a144e9974c371fa926cb535 (patch)
tree1af4dc3d224c0fa17ec98e9cdb334c5839d87b4f /extern/mantaflow/helper
parent7df435325b5a4b8b34d61db42094554279e6bd62 (diff)
Fluid: Updated Manta pp files
Includes additional minmax check for Windows
Diffstat (limited to 'extern/mantaflow/helper')
-rw-r--r--extern/mantaflow/helper/util/vectorbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/mantaflow/helper/util/vectorbase.h b/extern/mantaflow/helper/util/vectorbase.h
index a3135431eb3..41584663a0f 100644
--- a/extern/mantaflow/helper/util/vectorbase.h
+++ b/extern/mantaflow/helper/util/vectorbase.h
@@ -15,7 +15,7 @@
#define _VECTORBASE_H
// get rid of windos min/max defines
-#if defined(WIN32) || defined(_WIN32)
+#if (defined(WIN32) || defined(_WIN32)) && !defined(NOMINMAX)
# define NOMINMAX
#endif