[Bf-blender-cvs] [25ad7b4] master: Fix for prevoius commit: accidentally changed a ifndef to ifdef.

Juergen Herrmann noreply at git.blender.org
Sun Mar 9 00:31:32 CET 2014


Commit: 25ad7b44a0a3251c5ad5171031010549de0c1c8a
Author: Juergen Herrmann
Date:   Sun Mar 9 00:30:50 2014 +0100
https://developer.blender.org/rB25ad7b44a0a3251c5ad5171031010549de0c1c8a

Fix for prevoius commit: accidentally changed a ifndef to ifdef.

===================================================================

M	source/blender/freestyle/intern/geometry/Grid.h

===================================================================

diff --git a/source/blender/freestyle/intern/geometry/Grid.h b/source/blender/freestyle/intern/geometry/Grid.h
index aefe75f..25988b3 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>




More information about the Bf-blender-cvs mailing list