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:
authorCampbell Barton <ideasman42@gmail.com>2015-06-20 08:17:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-20 08:17:32 +0300
commit74b32a23f7c27f03285d28d381f841e08cbbb486 (patch)
treea34bd8427760e98186d1c3fb5e647acc6550e103 /source/creator
parent4addabaed8b1836b84a8d255b4ff3bb865882de5 (diff)
Cleanup: checks for unsupported MSVC versions
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 856d0e10f1f..a67dbd5a5c9 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -41,7 +41,7 @@
#endif
#ifdef WIN32
-# if defined(_MSC_VER) && _MSC_VER >= 1800 && defined(_M_X64)
+# if defined(_MSC_VER) && defined(_M_X64)
# include <math.h> /* needed for _set_FMA3_enable */
# endif
# include <windows.h>
@@ -1645,7 +1645,7 @@ int main(
#ifdef WIN32
/* FMA3 support in the 2013 CRT is broken on Vista and Windows 7 RTM (fixed in SP1). Just disable it. */
-# if defined(_MSC_VER) && _MSC_VER >= 1800 && defined(_M_X64)
+# if defined(_MSC_VER) && defined(_M_X64)
_set_FMA3_enable(0);
# endif