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:
authorJuergen Herrmann <shadowrom@me.com>2014-03-09 03:30:50 +0400
committerJuergen Herrmann <shadowrom@me.com>2014-03-09 03:30:50 +0400
commit25ad7b44a0a3251c5ad5171031010549de0c1c8a (patch)
tree1107cac92858970eb5fe65a3118148932849903c /source/blender/freestyle/intern/geometry/Grid.h
parent5559302369ae6a17e9ad5f3c8bd9ea6eb318d87f (diff)
Fix for prevoius commit: accidentally changed a ifndef to ifdef.
Diffstat (limited to 'source/blender/freestyle/intern/geometry/Grid.h')
-rw-r--r--source/blender/freestyle/intern/geometry/Grid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/geometry/Grid.h b/source/blender/freestyle/intern/geometry/Grid.h
index aefe75f4842..25988b3b0f8 100644
--- a/source/blender/freestyle/intern/geometry/Grid.h
+++ b/source/blender/freestyle/intern/geometry/Grid.h
@@ -30,7 +30,7 @@
#include <cstring> // for memset
#include <float.h>
-#ifdef _MSC_VER
+#if !defined(_MSC_VER) || _MSC_VER >= 1700
#include <stdint.h> // For SET_UINT_IN_POINTER, i.e. uintptr_t.
#endif
#include <vector>