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>2018-05-09 11:00:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-09 11:00:55 +0300
commit598216c36e2461ddcaa7dd72e4d50691710c4647 (patch)
tree79a2b3e963a75f66b5ff104635f6ea328d5276b8 /source/blender/windowmanager/intern/wm_init_exit.c
parent80844fdfc04e5711bd3b1e1453c09551ee8897c7 (diff)
MSVC: remove hack for near/far name collision
windows headers define these, conflicting w/ View3D.near/far.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_init_exit.c')
-rw-r--r--source/blender/windowmanager/intern/wm_init_exit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c
index 52682523212..912809c7ab9 100644
--- a/source/blender/windowmanager/intern/wm_init_exit.c
+++ b/source/blender/windowmanager/intern/wm_init_exit.c
@@ -36,6 +36,8 @@
#ifdef WIN32
# include <windows.h>
+# undef near
+# undef far
#endif
#include "MEM_guardedalloc.h"