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:
-rw-r--r--source/blender/blenlib/BLI_assert.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_assert.h b/source/blender/blenlib/BLI_assert.h
index 6942c87caec..7fb91656edb 100644
--- a/source/blender/blenlib/BLI_assert.h
+++ b/source/blender/blenlib/BLI_assert.h
@@ -89,7 +89,11 @@ extern "C" {
# define BLI_STATIC_ASSERT(a, msg) static_assert(a, msg);
#elif defined(_MSC_VER)
/* Visual Studio */
-# define BLI_STATIC_ASSERT(a, msg) _STATIC_ASSERT(a);
+# if _MSC_VER > 1910
+# define BLI_STATIC_ASSERT(a, msg) static_assert(a, msg);
+# else
+# define BLI_STATIC_ASSERT(a, msg) _STATIC_ASSERT(a);
+# endif
#elif defined(__COVERITY__)
/* Workaround error with coverity */
# define BLI_STATIC_ASSERT(a, msg)